Click here to Skip to main content
15,880,972 members
Articles / Desktop Programming / Windows Forms

Sortable ListView

Rate me:
Please Sign up or sign in to vote.
4.67/5 (2 votes)
2 Apr 2010CPOL1 min read 30.4K   13   4
The Windows Forms ListView control doesn't provide column sorting functionality. This article shows how to implement sorting while taking field type into consideration (sort by date, number, ...)

The Windows Forms ListView control doesn't provide column sorting functionality. So if you click on a column in a ListView Details view, don't expect the items to be sorted by the clicked column. To get this functionality, we'll need to sort the items by the clicked column in the ListView ColumnClick event. I searched online for “Sortable ListView” and I found three MSDN articles talking about this: Sort ListView Column in Visual C#, Sorting ListView Items by Column Using Windows Forms, and How to: Sort ListView Items. None of those implementations takes into consideration the type of the column being sorted. That is, they all do string sorting. If you have dates and numbers in your list, then they’ll not be sorted properly. For example, number 2 will be considered greater than 11. Date time 9/9/1400 will be considered greater than 11/11/2020. Below is an implementation that takes into consideration string, DateTime, int and double types. It can be easily extended to handle more types.

  • Add the SortableListView control to your Windows Form.
  • When adding columns to the SortableListView, set the Tag attribute to the type of the column.
    C#
    sortableListView.Columns.Add("String Field").Tag = typeof(string);
    sortableListView.Columns.Add("DateTime Field").Tag = typeof(DateTime);
    sortableListView.Columns.Add("Int Field").Tag = typeof(int);
    sortableListView.Columns.Add("Double Field").Tag = typeof(double);
  • Now, you can add the items as usual.

For example, the below list is sorted by the DateTime field.

Sortable ListView

You can find the source code on my GitHub page.

Posted in .NET, C#, Uncategorized Tagged: ListView, sort, Sortable, SortableListView, SortByColumn, SortDate, SortDouble, SortInt

 

This article was originally posted at http://mycodelog.com/2010/01/16/sortablelistview

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
https://open-gl.com

Comments and Discussions

 
GeneralThanks! Pin
Anthony Daly15-Feb-10 23:53
Anthony Daly15-Feb-10 23:53 
GeneralRe: Thanks! Pin
Ali BaderEddin16-Feb-10 7:51
Ali BaderEddin16-Feb-10 7:51 
Thanks Anthony. I'm glad it helps Smile | :)

-- Ali B

http://mycodelog.com
GeneralRe: Thanks! Pin
GautamBSharma31-May-10 23:56
GautamBSharma31-May-10 23:56 
GeneralRe: Thanks! Pin
Ali BaderEddin2-Jun-10 9:12
Ali BaderEddin2-Jun-10 9:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.