I really didnt know what to put to the title so sorry about that. I have 2 colums where i list files from 2 folders. Now what i would like to do is to give a user ability to rearrange the files by clicking on one file in one column and then on the other file in other column. The application merges these two files together.
Just onother option would be just use datagrid and its drag and drop functionality (one column is static and one rearrangable with drag and drop or something) but doing it this way isnt really what i would like..
So, all options are welcome..
EDIT:
Using WinForms, it doesnt have to be gridview, just i couldnt think of anything else..
I would just create two
DataGridView‘s (orListViewif you prefer), the first listing the files in the folderAand the second listing the files in the folderB.Then allow to select just one row at a time in both grids (
MultiSelect = false,SelectionMode = FullRowSelect) and add a button called “Merge Selected”, that simply merges the file selected in the first grid with the one selected in the second grid.