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