How do I create an ordered list of users in C #?

How do I get the creation of an ordered list of checkboxes in C #? The user has to select which files from the list they want to transfer to another application and the order matters, so I was looking for a way to accomplish this using an up / down arrow type interface on the side

Any ideas on how I should go about doing this?

Greetings

0


a source to share


1 answer


So you mean reordered, not sorted, strictly speaking.



The list item property allows for index-based deletion and insertion. When the user hits the up / down arrow, just remove the item according to the selectedindex property and re-insert it back at index + 1 / -1.

+1


a source







All Articles