5 writes to listItemSorter
System.Windows.Forms (5)
winforms\Managed\System\WinForms\ListView.cs (5)
1233listItemSorter = value; 1500listItemSorter = new IconComparer(sorting); 1507listItemSorter = null; 8933owner.listItemSorter = null; 8964owner.listItemSorter = comparer;
11 references to listItemSorter
System.Windows.Forms (11)
winforms\Managed\System\WinForms\ListView.cs (11)
736if (listItemSorter == null) { 1229return listItemSorter; 1232if (listItemSorter != value) { 1499if (listItemSorter == null) { 1502else if (listItemSorter is IconComparer) { 1503((IconComparer)listItemSorter).SortOrder = sorting; 2379Debug.Assert(listItemSorter != null, "null sorter!"); 2380if (listItemSorter != null) { 2381return listItemSorter.Compare(listItemsTable[(int)lparam1], listItemsTable[(int)lparam2]); 5178if (IsHandleCreated && listItemSorter != null) { 8932IComparer comparer = owner.listItemSorter;