8 references to _listItemsTable
System.Windows.Forms (8)
System\Windows\Forms\Controls\ListView\ListView.cs (4)
2464
_listItemsTable
.TryGetValue((int)lparam1, out ListViewItem? x);
2465
_listItemsTable
.TryGetValue((int)lparam2, out ListViewItem? y);
4045
Debug.Assert(!
_listItemsTable
.ContainsKey(itemID), "internal hash table inconsistent -- inserting item, but it's already in the hash table");
4046
_listItemsTable
.Add(itemID, item);
System\Windows\Forms\Controls\ListView\ListView.ListViewNativeItemCollection.cs (4)
86
_owner.
_listItemsTable
.TryGetValue(DisplayIndexToID(index), out ListViewItem? item);
293
_owner.
_listItemsTable
.Clear();
312
return _owner.
_listItemsTable
.TryGetValue(item._id, out ListViewItem? itemOut)
433
_owner.
_listItemsTable
.Remove(itemID);