2 types derived from SortDescriptionCollection
PresentationFramework (1)
src\Framework\System\Windows\Data\BindingListCollectionView.cs (1)
2531
private class BindingListSortDescriptionCollection :
SortDescriptionCollection
WindowsBase (1)
Base\System\ComponentModel\SortDescriptionCollection.cs (1)
142
class EmptySortDescriptionCollection :
SortDescriptionCollection
, IList
5 instantiations of SortDescriptionCollection
PresentationFramework (4)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (1)
67
SetSortDescriptions(new
SortDescriptionCollection
());
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
615
MySortDescriptions = new
SortDescriptionCollection
();
src\Framework\System\Windows\Data\CollectionViewSource.cs (1)
42
_sort = new
SortDescriptionCollection
();
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
405
SetSortDescriptions(new
SortDescriptionCollection
());
WindowsBase (1)
Base\System\ComponentModel\GroupDescription.cs (1)
119
SetSortDescriptions(new
SortDescriptionCollection
());
38 references to SortDescriptionCollection
PresentationFramework (31)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (3)
62
public override
SortDescriptionCollection
SortDescriptions
742
private void SetSortDescriptions(
SortDescriptionCollection
descriptions)
861
SortDescriptionCollection
_sort;
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\MS\Internal\Data\LiveShapingList.cs (2)
121
SortDescriptionCollection
sdc = ((ICollectionView)View).SortDescriptions;
265
SortDescriptionCollection
sdc = ((ICollectionView)View).SortDescriptions;
src\Framework\MS\Internal\Data\SortFieldComparer.cs (3)
40
internal SortFieldComparer(
SortDescriptionCollection
sortFields, CultureInfo culture)
121
private SortPropertyInfo[] CreatePropertyInfo(
SortDescriptionCollection
sortFields)
240
SortDescriptionCollection
_sortFields;
src\Framework\MS\Internal\SystemXmlHelper.cs (1)
50
internal static IComparer PrepareXmlComparer(IEnumerable collection,
SortDescriptionCollection
sort, CultureInfo culture)
src\Framework\System\Windows\Controls\ItemCollection.cs (9)
607
public override
SortDescriptionCollection
SortDescriptions
1762
SortDescriptionCollection
source = (IsSortingSet) ? MySortDescriptions : _collectionView.SortDescriptions;
1763
SortDescriptionCollection
target = (IsSortingSet) ? _collectionView.SortDescriptions : MySortDescriptions;
1816
SortDescriptionCollection
sort = view.SortDescriptions;
1817
if (sort != null && sort !=
SortDescriptionCollection
.Empty)
1858
SortDescriptionCollection
sort = view.SortDescriptions;
1859
if (sort != null && sort !=
SortDescriptionCollection
.Empty)
2302
private
SortDescriptionCollection
MySortDescriptions
2507
public
SortDescriptionCollection
_sort; // storage for SortDescriptions; will forward to _collectionView.SortDescriptions when available
src\Framework\System\Windows\Data\BindingListCollectionView.cs (3)
246
public override
SortDescriptionCollection
SortDescriptions
261
return
SortDescriptionCollection
.Empty;
2204
private ListSortDescriptionCollection ConvertSortDescriptionCollection(
SortDescriptionCollection
sorts)
src\Framework\System\Windows\Data\CollectionView.cs (2)
270
public virtual
SortDescriptionCollection
SortDescriptions
272
get { return
SortDescriptionCollection
.Empty; }
src\Framework\System\Windows\Data\CollectionViewSource.cs (2)
226
public
SortDescriptionCollection
SortDescriptions
1270
SortDescriptionCollection
_sort;
src\Framework\System\Windows\Data\ListCollectionView.cs (4)
400
public override
SortDescriptionCollection
SortDescriptions
2461
internal static IComparer PrepareComparer(IComparer customSort,
SortDescriptionCollection
sort, Func<CollectionView> lazyGetCollectionView)
2927
private void SetSortDescriptions(
SortDescriptionCollection
descriptions)
3354
private
SortDescriptionCollection
_sort;
WindowsBase (7)
Base\MS\Internal\SystemXmlExtensionMethods.cs (1)
31
internal abstract IComparer PrepareXmlComparer(IEnumerable collection,
SortDescriptionCollection
sort, CultureInfo culture);
Base\System\ComponentModel\GroupDescription.cs (4)
114
public
SortDescriptionCollection
SortDescriptions
187
internal
SortDescriptionCollection
SortDescriptionsInternal
208
private void SetSortDescriptions(
SortDescriptionCollection
descriptions)
259
SortDescriptionCollection
_sort;
Base\System\ComponentModel\ICollectionView.cs (1)
84
SortDescriptionCollection
SortDescriptions { get; }
Base\System\ComponentModel\SortDescriptionCollection.cs (1)
210
public static readonly
SortDescriptionCollection
Empty = new EmptySortDescriptionCollection();