7 overrides of GetItemAt
PresentationFramework (7)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
434public override object GetItemAt(int index)
MS\Internal\Data\CollectionViewProxy.cs (1)
351public override object GetItemAt(int index)
MS\Internal\Data\CompositeCollectionView.cs (1)
199public override object GetItemAt(int index)
MS\Internal\Data\EnumerableCollectionView.cs (1)
357public override object GetItemAt(int index)
System\Windows\Controls\ItemCollection.cs (1)
340public override object GetItemAt(int index)
System\Windows\Data\BindingListCollectionView.cs (1)
165public override object GetItemAt(int index)
System\Windows\Data\ListCollectionView.cs (1)
306public override object GetItemAt(int index)
5 references to GetItemAt
PresentationFramework (5)
MS\Internal\Data\IndexedEnumerable.cs (1)
643value = CollectionView.GetItemAt(index);
System\Windows\Controls\ItemCollection.cs (1)
356return _collectionView.GetItemAt(index);
System\Windows\Data\CollectionContainer.cs (1)
203return cv.GetItemAt(index);
System\Windows\Data\CollectionView.cs (2)
1359return GetItemAt(CurrentPosition) == CurrentItem; 1415return (IsEmpty || HashHelper.HasReliableHashCode(GetItemAt(0)));