Implemented interface member:
4 overrides of Filter
PresentationFramework (4)
MS\Internal\Data\CollectionViewProxy.cs (1)
98
public override Predicate<object>
Filter
MS\Internal\Data\EnumerableCollectionView.cs (1)
108
public override Predicate<object>
Filter
System\Windows\Controls\ItemCollection.cs (1)
632
public override Predicate<object>
Filter
System\Windows\Data\ListCollectionView.cs (1)
427
public override Predicate<object>
Filter
3 writes to Filter
PresentationFramework (3)
System\Windows\Controls\ItemCollection.cs (2)
642
_collectionView.
Filter
= value;
1752
_collectionView.
Filter
= MyFilter;
System\Windows\Data\ListCollectionView.cs (1)
440
base.
Filter
= value;
12 references to Filter
PresentationFramework (12)
MS\Internal\Controls\InnerItemCollectionView.cs (4)
499
/// Re-create the view, using any <seealso cref="CollectionView.SortDescriptions"/> and/or <seealso cref="CollectionView.
Filter
"/>.
512
if (SortDescriptions.Count > 0 ||
Filter
!= null)
515
if (
Filter
== null)
525
if (
Filter
(_rawList[k]))
MS\Internal\Data\CompositeCollectionView.cs (1)
144
/// When false, set <seealso cref="CollectionView.
Filter
"/> will throw an exception.
System\Windows\Controls\ItemCollection.cs (1)
636
return (EnsureCollectionView()) ? _collectionView.
Filter
: MyFilter;
System\Windows\Data\CollectionView.cs (5)
232
/// When false, set <seealso cref="
Filter
"/> will throw an exception.
299
/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="
Filter
"/>.
621
if (CanFilter &&
Filter
!= null)
622
return
Filter
(item);
836
/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="
Filter
"/>.
System\Windows\Data\ListCollectionView.cs (1)
431
return base.
Filter
;