7 overrides of GetItemAt
PresentationFramework (7)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
432public override object GetItemAt(int index)
MS\Internal\Data\CollectionViewProxy.cs (1)
345public override object GetItemAt(int index)
MS\Internal\Data\CompositeCollectionView.cs (1)
190public override object GetItemAt(int index)
MS\Internal\Data\EnumerableCollectionView.cs (1)
352public override object GetItemAt(int index)
System\Windows\Controls\ItemCollection.cs (1)
327public override object GetItemAt(int index)
System\Windows\Data\BindingListCollectionView.cs (1)
159public override object GetItemAt(int index)
System\Windows\Data\ListCollectionView.cs (1)
299public override object GetItemAt(int index)
5 references to GetItemAt
PresentationFramework (5)
MS\Internal\Data\IndexedEnumerable.cs (1)
628value = CollectionView.GetItemAt(index);
System\Windows\Controls\ItemCollection.cs (1)
343return _collectionView.GetItemAt(index);
System\Windows\Data\CollectionContainer.cs (1)
191return cv.GetItemAt(index);
System\Windows\Data\CollectionView.cs (2)
1351return GetItemAt(CurrentPosition) == CurrentItem; 1407return (IsEmpty || HashHelper.HasReliableHashCode(GetItemAt(0)));