Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ListView::Sort Method ()

 

Sorts the items of the list view.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
void Sort()

Typically items are sorted using the Sorting property, which sorts items based on the item text. To customize the sort order, you must write a class that implements the IComparer interface and set the ListViewItemSorter property to an object of that class. This is useful, for example, when you want to sort items by subitem text. For more information on performing manual sorting of items, see the example for the ListViewItemSorter property.

If the ListView::Sorting property is set to a value other than SortOrder::None or if the ListViewItemSorter property is set, the list is sorted automatically when items are added. Items are not sorted automatically when the label text changes.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft