Implemented interface member:
4 overrides of Filter
PresentationFramework (4)
MS\Internal\Data\CollectionViewProxy.cs (1)
100
public override Predicate<object>
Filter
MS\Internal\Data\EnumerableCollectionView.cs (1)
112
public override Predicate<object>
Filter
System\Windows\Controls\ItemCollection.cs (1)
641
public override Predicate<object>
Filter
System\Windows\Data\ListCollectionView.cs (1)
433
public override Predicate<object>
Filter
3 writes to Filter
PresentationFramework (3)
System\Windows\Controls\ItemCollection.cs (2)
651
_collectionView.
Filter
= value;
1761
_collectionView.
Filter
= MyFilter;
System\Windows\Data\ListCollectionView.cs (1)
446
base.
Filter
= value;
12 references to Filter
PresentationFramework (12)
MS\Internal\Controls\InnerItemCollectionView.cs (4)
500
/// Re-create the view, using any <seealso cref="CollectionView.SortDescriptions"/> and/or <seealso cref="CollectionView.
Filter
"/>.
513
if (SortDescriptions.Count > 0 ||
Filter
!= null)
516
if (
Filter
== null)
526
if (
Filter
(_rawList[k]))
MS\Internal\Data\CompositeCollectionView.cs (1)
150
/// When false, set <seealso cref="CollectionView.
Filter
"/> will throw an exception.
System\Windows\Controls\ItemCollection.cs (1)
645
return (EnsureCollectionView()) ? _collectionView.
Filter
: MyFilter;
System\Windows\Data\CollectionView.cs (5)
236
/// When false, set <seealso cref="
Filter
"/> will throw an exception.
303
/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="
Filter
"/>.
625
if (CanFilter &&
Filter
!= null)
626
return
Filter
(item);
840
/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="
Filter
"/>.
System\Windows\Data\ListCollectionView.cs (1)
437
return base.
Filter
;