7 overrides of IndexOf
PresentationFramework (7)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
420
public override int
IndexOf
(object item)
MS\Internal\Data\CollectionViewProxy.cs (1)
324
public override int
IndexOf
(object item)
MS\Internal\Data\CompositeCollectionView.cs (1)
185
public override int
IndexOf
(object item)
MS\Internal\Data\EnumerableCollectionView.cs (1)
330
public override int
IndexOf
(object item)
System\Windows\Controls\ItemCollection.cs (1)
321
public override int
IndexOf
(object item)
System\Windows\Data\BindingListCollectionView.cs (1)
149
public override int
IndexOf
(object item)
System\Windows\Data\ListCollectionView.cs (1)
290
public override int
IndexOf
(object item)
6 references to IndexOf
PresentationFramework (5)
MS\Internal\Data\IndexedEnumerable.cs (1)
610
value = CollectionView.
IndexOf
(item);
System\Windows\Controls\ItemCollection.cs (1)
328
return _collectionView.
IndexOf
(item);
System\Windows\Data\CollectionContainer.cs (1)
221
return cv.
IndexOf
(item);
System\Windows\Data\CollectionView.cs (2)
196
return (
IndexOf
(item) >= 0);
533
index =
IndexOf
(item);
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonGallery.cs (1)
1052
int index = SourceCollectionView != null ? SourceCollectionView.
IndexOf
(selectedItem) : -1;