Implemented interface member:
6 overrides of SortDescriptions
PresentationFramework (6)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
59public override SortDescriptionCollection SortDescriptions
MS\Internal\Data\CollectionViewProxy.cs (1)
128public override SortDescriptionCollection SortDescriptions
MS\Internal\Data\EnumerableCollectionView.cs (1)
138public override SortDescriptionCollection SortDescriptions
System\Windows\Controls\ItemCollection.cs (1)
587public override SortDescriptionCollection SortDescriptions
System\Windows\Data\BindingListCollectionView.cs (1)
234public override SortDescriptionCollection SortDescriptions
System\Windows\Data\ListCollectionView.cs (1)
386public override SortDescriptionCollection SortDescriptions
14 references to SortDescriptions
PresentationFramework (14)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
499/// Re-create the view, using any <seealso cref="CollectionView.SortDescriptions"/> and/or <seealso cref="CollectionView.Filter"/>.
System\Windows\Controls\ItemCollection.cs (7)
599CloneList(MySortDescriptions, _collectionView.SortDescriptions); 1742SortDescriptionCollection source = (IsSortingSet) ? MySortDescriptions : _collectionView.SortDescriptions; 1743SortDescriptionCollection target = (IsSortingSet) ? _collectionView.SortDescriptions : MySortDescriptions; 1796SortDescriptionCollection sort = view.SortDescriptions; 1838SortDescriptionCollection sort = view.SortDescriptions; 2005SynchronizeCollections<SortDescription>(e, MySortDescriptions, _collectionView.SortDescriptions); 2021SynchronizeCollections<SortDescription>(e, _collectionView.SortDescriptions, MySortDescriptions);
System\Windows\Data\CollectionView.cs (5)
265/// to <seealso cref="SortDescriptions"/>. 299/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>. 836/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>. 840if (SortDescriptions.Count > 0) 895if (SortDescriptions.Count > 0)
System\Windows\Data\ListCollectionView.cs (1)
452/// Note: Setting the custom comparer object will clear previously set <seealso cref="CollectionView.SortDescriptions"/>.