Implemented interface member:
property
Filter
System.ComponentModel.ICollectionView.Filter
4 overrides of Filter
PresentationFramework (4)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
103public override Predicate<object> Filter
src\Framework\MS\Internal\Data\EnumerableCollectionView.cs (1)
115public override Predicate<object> Filter
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
652public override Predicate<object> Filter
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
441public override Predicate<object> Filter
3 writes to Filter
PresentationFramework (3)
src\Framework\System\Windows\Controls\ItemCollection.cs (2)
662_collectionView.Filter = value; 1772_collectionView.Filter = MyFilter;
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
454base.Filter = value;
12 references to Filter
PresentationFramework (12)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (4)
502/// Re-create the view, using any <seealso cref="CollectionView.SortDescriptions"/> and/or <seealso cref="CollectionView.Filter"/>. 515if (SortDescriptions.Count > 0 || Filter != null) 518if (Filter == null) 528if (Filter(_rawList[k]))
src\Framework\MS\Internal\Data\CompositeCollectionView.cs (1)
157/// When false, set <seealso cref="CollectionView.Filter"/> will throw an exception.
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
656return (EnsureCollectionView()) ? _collectionView.Filter : MyFilter;
src\Framework\System\Windows\Data\CollectionView.cs (5)
244/// When false, set <seealso cref="Filter"/> will throw an exception. 311/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>. 633if (CanFilter && Filter != null) 634return Filter(item); 849/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>.
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
445return base.Filter;