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