Implemented interface member:
6 overrides of SortDescriptions
PresentationFramework (6)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
58public override SortDescriptionCollection SortDescriptions
MS\Internal\Data\CollectionViewProxy.cs (1)
127public override SortDescriptionCollection SortDescriptions
MS\Internal\Data\EnumerableCollectionView.cs (1)
137public override SortDescriptionCollection SortDescriptions
System\Windows\Controls\ItemCollection.cs (1)
583public override SortDescriptionCollection SortDescriptions
System\Windows\Data\BindingListCollectionView.cs (1)
233public override SortDescriptionCollection SortDescriptions
System\Windows\Data\ListCollectionView.cs (1)
385public override SortDescriptionCollection SortDescriptions
14 references to SortDescriptions
PresentationFramework (14)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
498/// Re-create the view, using any <seealso cref="CollectionView.SortDescriptions"/> and/or <seealso cref="CollectionView.Filter"/>.
System\Windows\Controls\ItemCollection.cs (7)
595CloneList(MySortDescriptions, _collectionView.SortDescriptions); 1732SortDescriptionCollection source = (IsSortingSet) ? MySortDescriptions : _collectionView.SortDescriptions; 1733SortDescriptionCollection target = (IsSortingSet) ? _collectionView.SortDescriptions : MySortDescriptions; 1786SortDescriptionCollection sort = view.SortDescriptions; 1828SortDescriptionCollection sort = view.SortDescriptions; 1990SynchronizeCollections<SortDescription>(e, MySortDescriptions, _collectionView.SortDescriptions); 2006SynchronizeCollections<SortDescription>(e, _collectionView.SortDescriptions, MySortDescriptions);
System\Windows\Data\CollectionView.cs (5)
261/// to <seealso cref="SortDescriptions"/>. 295/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>. 832/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>. 836if (SortDescriptions.Count > 0) 891if (SortDescriptions.Count > 0)
System\Windows\Data\ListCollectionView.cs (1)
451/// Note: Setting the custom comparer object will clear previously set <seealso cref="CollectionView.SortDescriptions"/>.