Visual C # - What kind of control should I use for this task?

I am looking for suggestions as to what type of form control or what combination of form controls I should use for the following task:

I have a list of files that everything needs to be renamed, and the new name must be entered manually. I need to display a list of files and provide a text box for renaming. I prefer that all files and their new name be displayed at the same time, rather than a list of files, with 1 text field, which is updated when you click on a file in the list.

+4
source share
2 answers

sounds like a datagridview will work; one column for the old name, one column for the new name and the commit button to immediately rename them

+3
source

You can use a DataGridView that shows the file names in one column and contains a text field in the next column that allows you to enter a new file name.

+2
source

Source: https://habr.com/ru/post/1299440/


All Articles