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); 1739SortDescriptionCollection source = (IsSortingSet) ? MySortDescriptions : _collectionView.SortDescriptions; 1740SortDescriptionCollection target = (IsSortingSet) ? _collectionView.SortDescriptions : MySortDescriptions; 1793SortDescriptionCollection sort = view.SortDescriptions; 1835SortDescriptionCollection sort = view.SortDescriptions; 1997SynchronizeCollections<SortDescription>(e, MySortDescriptions, _collectionView.SortDescriptions); 2013SynchronizeCollections<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"/>.