7 overrides of GetItemAt
PresentationFramework (7)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
433public override object GetItemAt(int index)
MS\Internal\Data\CollectionViewProxy.cs (1)
346public override object GetItemAt(int index)
MS\Internal\Data\CompositeCollectionView.cs (1)
191public override object GetItemAt(int index)
MS\Internal\Data\EnumerableCollectionView.cs (1)
353public override object GetItemAt(int index)
System\Windows\Controls\ItemCollection.cs (1)
328public override object GetItemAt(int index)
System\Windows\Data\BindingListCollectionView.cs (1)
160public override object GetItemAt(int index)
System\Windows\Data\ListCollectionView.cs (1)
300public override object GetItemAt(int index)
5 references to GetItemAt
PresentationFramework (5)
MS\Internal\Data\IndexedEnumerable.cs (1)
629value = CollectionView.GetItemAt(index);
System\Windows\Controls\ItemCollection.cs (1)
344return _collectionView.GetItemAt(index);
System\Windows\Data\CollectionContainer.cs (1)
192return cv.GetItemAt(index);
System\Windows\Data\CollectionView.cs (2)
1352return GetItemAt(CurrentPosition) == CurrentItem; 1408return (IsEmpty || HashHelper.HasReliableHashCode(GetItemAt(0)));