6 references to LeafIndexOf
PresentationFramework (6)
src\Framework\MS\Internal\Data\CollectionViewGroupInternal.cs (1)
267
int subgroupIndex = subgroup.
LeafIndexOf
(item);
src\Framework\System\Windows\Automation\Peers\GroupItemAutomationPeer.cs (1)
298
if (cvg.
LeafIndexOf
(item) >= 0)
src\Framework\System\Windows\Data\BindingListCollectionView.cs (2)
1714
return _group.
LeafIndexOf
(item);
1815
return (!_isGrouping) ? CollectionProxy.Contains(item) : (_group.
LeafIndexOf
(item) >= 0);
src\Framework\System\Windows\Data\ListCollectionView.cs (2)
2185
return _group.
LeafIndexOf
(item);
2292
return (!IsGrouping) ? InternalList.Contains(item) : (_group.
LeafIndexOf
(item) >= 0);