How do I sort columns of integers in a ListView
c#, .net 2.0, Winform
System.Windows.Forms.ListView
|
|
|||||||
|
|
|
This is how I accomplished being able to sort on multiple columns, and being able to sort each column as a number, or as text. First use this class:
In your form's constructor, set the sorter like this:
Then handle the ColumnClick even of your listview control like this:
This is all dependent on the Tag property of each column either being set to "Numeric" or not, so the sorter knows how to sort. In the above example I cast the values as floats when numeric, you may want to change that to int. |
||||||||
|
|
|
You will need to create a class that implements the
Then you assign such a comparer to the ListViewItemSorter property and invoke the sort method of the ListView control:
|
||||
|
|
|
If you are getting started with a ListView, your life will be much much easier if you use an ObjectListView instead. ObjectListView is an open source wrapper around .NET WinForms ListView, and it solves all these annoying little problems that normally make working with a ListView so frustrating. For example, it automatically sorts ints so that '100' comes after '3' (DateTimes, bools, and everything else sorts correctly too). Seriously, you will never want to go back to a plain ListView after using an ObjectListView. Yes, I am the author -- but that doesn't mean I'm biased... OK, well maybe it does :) Look here for some other people's opinions. |
||
|
|
I'd do it in the data source (model) instead of the view. Sort it there and it should update it in the view through databinding. |
||||||||||
|