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