Implemented interface member:
4 overrides of Filter
PresentationFramework (4)
MS\Internal\Data\CollectionViewProxy.cs (1)
97
public override Predicate<object>
Filter
MS\Internal\Data\EnumerableCollectionView.cs (1)
107
public override Predicate<object>
Filter
System\Windows\Controls\ItemCollection.cs (1)
628
public override Predicate<object>
Filter
System\Windows\Data\ListCollectionView.cs (1)
426
public override Predicate<object>
Filter
3 writes to Filter
PresentationFramework (3)
System\Windows\Controls\ItemCollection.cs (2)
638
_collectionView.
Filter
= value;
1742
_collectionView.
Filter
= MyFilter;
System\Windows\Data\ListCollectionView.cs (1)
439
base.
Filter
= value;
12 references to Filter
PresentationFramework (12)
MS\Internal\Controls\InnerItemCollectionView.cs (4)
498
/// Re-create the view, using any <seealso cref="CollectionView.SortDescriptions"/> and/or <seealso cref="CollectionView.
Filter
"/>.
511
if (SortDescriptions.Count > 0 ||
Filter
!= null)
514
if (
Filter
== null)
524
if (
Filter
(_rawList[k]))
MS\Internal\Data\CompositeCollectionView.cs (1)
141
/// When false, set <seealso cref="CollectionView.
Filter
"/> will throw an exception.
System\Windows\Controls\ItemCollection.cs (1)
632
return (EnsureCollectionView()) ? _collectionView.
Filter
: MyFilter;
System\Windows\Data\CollectionView.cs (5)
228
/// When false, set <seealso cref="
Filter
"/> will throw an exception.
295
/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="
Filter
"/>.
617
if (CanFilter &&
Filter
!= null)
618
return
Filter
(item);
832
/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="
Filter
"/>.
System\Windows\Data\ListCollectionView.cs (1)
430
return base.
Filter
;