1 implementation of Filter
PresentationFramework (1)
src\Framework\System\Windows\Data\CollectionView.cs (1)
225
public virtual Predicate<object>
Filter
2 writes to Filter
PresentationFramework (2)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
106
set { ProxiedView.
Filter
= value; }
src\Framework\System\Windows\Data\CollectionViewSource.cs (1)
1019
view.
Filter
= filter;
4 references to Filter
PresentationFramework (3)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (3)
105
get { return ProxiedView.
Filter
; }
341
if (ProxiedView.CanFilter && ProxiedView.
Filter
!= null &&
343
return ProxiedView.
Filter
(item);
WindowsBase (1)
Base\System\ComponentModel\ICollectionView.cs (1)
46
/// underlying collection, it is more efficient to call <seealso cref="
Filter
"/>.