Implemented interface member:
property
SortDescriptions
System.ComponentModel.ICollectionView.SortDescriptions
6 overrides of SortDescriptions
PresentationFramework (6)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (1)
62
public override SortDescriptionCollection
SortDescriptions
src\Framework\MS\Internal\Data\CollectionViewProxy.cs (1)
133
public override SortDescriptionCollection
SortDescriptions
src\Framework\MS\Internal\Data\EnumerableCollectionView.cs (1)
145
public override SortDescriptionCollection
SortDescriptions
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
607
public override SortDescriptionCollection
SortDescriptions
src\Framework\System\Windows\Data\BindingListCollectionView.cs (1)
246
public override SortDescriptionCollection
SortDescriptions
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
400
public override SortDescriptionCollection
SortDescriptions
14 references to SortDescriptions
PresentationFramework (14)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (1)
502
/// Re-create the view, using any <seealso cref="CollectionView.
SortDescriptions
"/> and/or <seealso cref="CollectionView.Filter"/>.
src\Framework\System\Windows\Controls\ItemCollection.cs (7)
619
CloneList(MySortDescriptions, _collectionView.
SortDescriptions
);
1762
SortDescriptionCollection source = (IsSortingSet) ? MySortDescriptions : _collectionView.
SortDescriptions
;
1763
SortDescriptionCollection target = (IsSortingSet) ? _collectionView.
SortDescriptions
: MySortDescriptions;
1816
SortDescriptionCollection sort = view.
SortDescriptions
;
1858
SortDescriptionCollection sort = view.
SortDescriptions
;
2022
SynchronizeCollections<SortDescription>(e, MySortDescriptions, _collectionView.
SortDescriptions
);
2038
SynchronizeCollections<SortDescription>(e, _collectionView.
SortDescriptions
, MySortDescriptions);
src\Framework\System\Windows\Data\CollectionView.cs (5)
277
/// to <seealso cref="
SortDescriptions
"/>.
311
/// Re-create the view, using any <seealso cref="
SortDescriptions
"/> and/or <seealso cref="Filter"/>.
849
/// Re-create the view, using any <seealso cref="
SortDescriptions
"/> and/or <seealso cref="Filter"/>.
853
if (
SortDescriptions
.Count > 0)
908
if (
SortDescriptions
.Count > 0)
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
466
/// Note: Setting the custom comparer object will clear previously set <seealso cref="CollectionView.
SortDescriptions
"/>.