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)
584public 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)
596CloneList(MySortDescriptions, _collectionView.SortDescriptions); 1733SortDescriptionCollection source = (IsSortingSet) ? MySortDescriptions : _collectionView.SortDescriptions; 1734SortDescriptionCollection target = (IsSortingSet) ? _collectionView.SortDescriptions : MySortDescriptions; 1787SortDescriptionCollection sort = view.SortDescriptions; 1829SortDescriptionCollection sort = view.SortDescriptions; 1991SynchronizeCollections<SortDescription>(e, MySortDescriptions, _collectionView.SortDescriptions); 2007SynchronizeCollections<SortDescription>(e, _collectionView.SortDescriptions, MySortDescriptions);
System\Windows\Data\CollectionView.cs (5)
262/// to <seealso cref="SortDescriptions"/>. 296/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>. 833/// Re-create the view, using any <seealso cref="SortDescriptions"/> and/or <seealso cref="Filter"/>. 837if (SortDescriptions.Count > 0) 892if (SortDescriptions.Count > 0)
System\Windows\Data\ListCollectionView.cs (1)
452/// Note: Setting the custom comparer object will clear previously set <seealso cref="CollectionView.SortDescriptions"/>.