4 implementations of IsLiveFiltering
PresentationFramework (4)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
830bool? ICollectionViewLiveShaping.IsLiveFiltering
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
1325public bool? IsLiveFiltering
src\Framework\System\Windows\Data\BindingListCollectionView.cs (1)
1159public bool? IsLiveFiltering
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
1443public bool? IsLiveFiltering
4 writes to IsLiveFiltering
PresentationFramework (4)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
841cvls.IsLiveFiltering = value;
src\Framework\System\Windows\Controls\ItemCollection.cs (2)
1337cvls.IsLiveFiltering = value; 1800cvls.IsLiveFiltering = MyIsLiveFiltering;
src\Framework\System\Windows\Data\CollectionViewSource.cs (1)
1063liveView.IsLiveFiltering = IsLiveFilteringRequested;
3 references to IsLiveFiltering
PresentationFramework (3)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
835return (cvls != null) ? cvls.IsLiveFiltering : null;
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
1330return (cvls != null) ? cvls.IsLiveFiltering : null;
src\Framework\System\Windows\Data\CollectionViewSource.cs (1)
1077IsLiveFiltering = liveView.IsLiveFiltering;