4 implementations of IsLiveSorting
PresentationFramework (4)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
807bool? ICollectionViewLiveShaping.IsLiveSorting
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
1303public bool? IsLiveSorting
src\Framework\System\Windows\Data\BindingListCollectionView.cs (1)
1147public bool? IsLiveSorting
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
1419public bool? IsLiveSorting
4 writes to IsLiveSorting
PresentationFramework (4)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
818cvls.IsLiveSorting = value;
src\Framework\System\Windows\Controls\ItemCollection.cs (2)
1315cvls.IsLiveSorting = value; 1796cvls.IsLiveSorting = MyIsLiveSorting;
src\Framework\System\Windows\Data\CollectionViewSource.cs (1)
1044liveView.IsLiveSorting = IsLiveSortingRequested;
3 references to IsLiveSorting
PresentationFramework (3)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
812return (cvls != null) ? cvls.IsLiveSorting : null;
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
1308return (cvls != null) ? cvls.IsLiveSorting : null;
src\Framework\System\Windows\Data\CollectionViewSource.cs (1)
1058IsLiveSorting = liveView.IsLiveSorting;