8 references to _listItemsTable
System.Windows.Forms (8)
System\Windows\Forms\Controls\ListView\ListView.cs (4)
2476
_listItemsTable
.TryGetValue((int)lparam1, out ListViewItem? x);
2477
_listItemsTable
.TryGetValue((int)lparam2, out ListViewItem? y);
4057
Debug.Assert(!
_listItemsTable
.ContainsKey(itemID), "internal hash table inconsistent -- inserting item, but it's already in the hash table");
4058
_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);