6 references to LeafIndexOf
PresentationFramework (6)
MS\Internal\Data\CollectionViewGroupInternal.cs (1)
262
int subgroupIndex = subgroup.
LeafIndexOf
(item);
System\Windows\Automation\Peers\GroupItemAutomationPeer.cs (1)
300
if (cvg.
LeafIndexOf
(item) >= 0)
System\Windows\Data\BindingListCollectionView.cs (2)
1702
return _group.
LeafIndexOf
(item);
1803
return (!_isGrouping) ? CollectionProxy.Contains(item) : (_group.
LeafIndexOf
(item) >= 0);
System\Windows\Data\ListCollectionView.cs (2)
2168
return _group.
LeafIndexOf
(item);
2275
return (!IsGrouping) ? InternalList.Contains(item) : (_group.
LeafIndexOf
(item) >= 0);