7 overrides of IndexOf
PresentationFramework (7)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
419
public override int
IndexOf
(object item)
MS\Internal\Data\CollectionViewProxy.cs (1)
322
public override int
IndexOf
(object item)
MS\Internal\Data\CompositeCollectionView.cs (1)
179
public override int
IndexOf
(object item)
MS\Internal\Data\EnumerableCollectionView.cs (1)
326
public override int
IndexOf
(object item)
System\Windows\Controls\ItemCollection.cs (1)
312
public override int
IndexOf
(object item)
System\Windows\Data\BindingListCollectionView.cs (1)
144
public override int
IndexOf
(object item)
System\Windows\Data\ListCollectionView.cs (1)
284
public override int
IndexOf
(object item)
6 references to IndexOf
PresentationFramework (5)
MS\Internal\Data\IndexedEnumerable.cs (1)
605
value = CollectionView.
IndexOf
(item);
System\Windows\Controls\ItemCollection.cs (1)
319
return _collectionView.
IndexOf
(item);
System\Windows\Data\CollectionContainer.cs (1)
213
return cv.
IndexOf
(item);
System\Windows\Data\CollectionView.cs (2)
192
return (
IndexOf
(item) >= 0);
529
index =
IndexOf
(item);
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
1050
int index = SourceCollectionView != null ? SourceCollectionView.
IndexOf
(selectedItem) : -1;