7 overrides of IndexOf
PresentationFramework (7)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (1)
422public override int IndexOf(object item)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
327public override int IndexOf(object item)
src\Framework\MS\Internal\Data\CompositeCollectionView.cs (1)
192public override int IndexOf(object item)
src\Framework\MS\Internal\Data\EnumerableCollectionView.cs (1)
333public override int IndexOf(object item)
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
330public override int IndexOf(object item)
src\Framework\System\Windows\Data\BindingListCollectionView.cs (1)
156public override int IndexOf(object item)
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
298public override int IndexOf(object item)
7 references to IndexOf
PresentationFramework (5)
src\Framework\MS\Internal\Data\IndexedEnumerable.cs (1)
619value = CollectionView.IndexOf(item);
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
337return _collectionView.IndexOf(item);
src\Framework\System\Windows\Data\CollectionContainer.cs (1)
228return cv.IndexOf(item);
src\Framework\System\Windows\Data\CollectionView.cs (2)
204return (IndexOf(item) >= 0); 541index = IndexOf(item);
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\ChoiceEditor.cs (2)
438this.ValueIndex = this.CollectionView.IndexOf(this.Value); 1013return this.CollectionView.IndexOf(item);