Implemented interface member:
property
SortDescriptions
System.ComponentModel.ICollectionView.SortDescriptions
6 overrides of SortDescriptions
PresentationFramework (6)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (1)
62public override SortDescriptionCollection SortDescriptions
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
133public override SortDescriptionCollection SortDescriptions
src\Framework\MS\Internal\Data\EnumerableCollectionView.cs (1)
145public override SortDescriptionCollection SortDescriptions
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
607public override SortDescriptionCollection SortDescriptions
src\Framework\System\Windows\Data\BindingListCollectionView.cs (1)
246public override SortDescriptionCollection SortDescriptions
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
400public override SortDescriptionCollection SortDescriptions
14 references to SortDescriptions
PresentationFramework (14)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (1)
502/// Re-create the view, using any <seealso cref="CollectionView.SortDescriptions"/> and/or <seealso cref="CollectionView.Filter"/>.
src\Framework\System\Windows\Controls\ItemCollection.cs (7)
619CloneList(MySortDescriptions, _collectionView.SortDescriptions); 1762SortDescriptionCollection source = (IsSortingSet) ? MySortDescriptions : _collectionView.SortDescriptions; 1763SortDescriptionCollection target = (IsSortingSet) ? _collectionView.SortDescriptions : MySortDescriptions; 1816SortDescriptionCollection sort = view.SortDescriptions; 1858SortDescriptionCollection sort = view.SortDescriptions; 2022SynchronizeCollections<SortDescription>(e, MySortDescriptions, _collectionView.SortDescriptions); 2038SynchronizeCollections<SortDescription>(e, _collectionView.SortDescriptions, MySortDescriptions);
src\Framework\System\Windows\Data\CollectionView.cs (5)
277/// to <seealso cref="SortDescriptions"/>. 311/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>. 849/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>. 853if (SortDescriptions.Count > 0) 908if (SortDescriptions.Count > 0)
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
466/// Note: Setting the custom comparer object will clear previously set <seealso cref="CollectionView.SortDescriptions"/>.