tags:

views:

9

answers:

1

ASP.NET has a reorderlist control

http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/ReorderList/ReorderList.aspx

Is there anything equivalent (control, source code, ...) in Winform ?

+1  A: 

ObjectListView -- an open source wrapper around a WinForms ListView -- has the ability to rearrange objects in the list through dragging, much like the demo you gave.

Have a look at the "Drag and Drop" tab in the demo and read this recipe.

alt text

Grammarian
Wow amazing, thanks :)