7 overrides of IndexOf
PresentationFramework (7)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
418
public override int
IndexOf
(object item)
MS\Internal\Data\CollectionViewProxy.cs (1)
318
public override int
IndexOf
(object item)
MS\Internal\Data\CompositeCollectionView.cs (1)
176
public override int
IndexOf
(object item)
MS\Internal\Data\EnumerableCollectionView.cs (1)
325
public override int
IndexOf
(object item)
System\Windows\Controls\ItemCollection.cs (1)
308
public override int
IndexOf
(object item)
System\Windows\Data\BindingListCollectionView.cs (1)
143
public override int
IndexOf
(object item)
System\Windows\Data\ListCollectionView.cs (1)
283
public override int
IndexOf
(object item)
6 references to IndexOf
PresentationFramework (5)
MS\Internal\Data\IndexedEnumerable.cs (1)
595
value = CollectionView.
IndexOf
(item);
System\Windows\Controls\ItemCollection.cs (1)
315
return _collectionView.
IndexOf
(item);
System\Windows\Data\CollectionContainer.cs (1)
209
return cv.
IndexOf
(item);
System\Windows\Data\CollectionView.cs (2)
188
return (
IndexOf
(item) >= 0);
525
index =
IndexOf
(item);
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
1051
int index = SourceCollectionView != null ? SourceCollectionView.
IndexOf
(selectedItem) : -1;