4 implementations of CanChangeLiveSorting
PresentationFramework (4)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
767bool ICollectionViewLiveShaping.CanChangeLiveSorting
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
1263public bool CanChangeLiveSorting
src\Framework\System\Windows\Data\BindingListCollectionView.cs (1)
1125public bool CanChangeLiveSorting
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
1397public bool CanChangeLiveSorting
6 references to CanChangeLiveSorting
PresentationFramework (6)
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
772return (cvls != null) ? cvls.CanChangeLiveSorting : false;
src\Framework\System\Windows\Controls\ItemCollection.cs (3)
1268return (cvls != null) ? cvls.CanChangeLiveSorting : false; 1314if (cvls != null && cvls.CanChangeLiveSorting) 1794if (MyIsLiveSorting != null && cvls.CanChangeLiveSorting)
src\Framework\System\Windows\Data\CollectionViewSource.cs (2)
1042if (liveView.CanChangeLiveSorting) 1057CanChangeLiveSorting = liveView.CanChangeLiveSorting;