Implemented interface member:
6 overrides of SortDescriptions
PresentationFramework (6)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
60public override SortDescriptionCollection SortDescriptions
MS\Internal\Data\CollectionViewProxy.cs (1)
130public override SortDescriptionCollection SortDescriptions
MS\Internal\Data\EnumerableCollectionView.cs (1)
142public override SortDescriptionCollection SortDescriptions
System\Windows\Controls\ItemCollection.cs (1)
596public override SortDescriptionCollection SortDescriptions
System\Windows\Data\BindingListCollectionView.cs (1)
239public override SortDescriptionCollection SortDescriptions
System\Windows\Data\ListCollectionView.cs (1)
392public override SortDescriptionCollection SortDescriptions
14 references to SortDescriptions
PresentationFramework (14)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
500/// Re-create the view, using any <seealso cref="CollectionView.SortDescriptions"/> and/or <seealso cref="CollectionView.Filter"/>.
System\Windows\Controls\ItemCollection.cs (7)
608CloneList(MySortDescriptions, _collectionView.SortDescriptions); 1751SortDescriptionCollection source = (IsSortingSet) ? MySortDescriptions : _collectionView.SortDescriptions; 1752SortDescriptionCollection target = (IsSortingSet) ? _collectionView.SortDescriptions : MySortDescriptions; 1805SortDescriptionCollection sort = view.SortDescriptions; 1847SortDescriptionCollection sort = view.SortDescriptions; 2014SynchronizeCollections<SortDescription>(e, MySortDescriptions, _collectionView.SortDescriptions); 2030SynchronizeCollections<SortDescription>(e, _collectionView.SortDescriptions, MySortDescriptions);
System\Windows\Data\CollectionView.cs (5)
269/// to <seealso cref="SortDescriptions"/>. 303/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>. 840/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>. 844if (SortDescriptions.Count > 0) 899if (SortDescriptions.Count > 0)
System\Windows\Data\ListCollectionView.cs (1)
458/// Note: Setting the custom comparer object will clear previously set <seealso cref="CollectionView.SortDescriptions"/>.