1 write to _sort
PresentationFramework (1)
System\Windows\Data\ListCollectionView.cs (1)
2897
_sort
= descriptions;
11 references to _sort
PresentationFramework (11)
System\Windows\Data\ListCollectionView.cs (11)
390
if (
_sort
== null)
392
return
_sort
;
2420
get { return ((
_sort
!= null) && (
_sort
.Count > 0)); }
2873
ActiveComparer = PrepareComparer(_customSort,
_sort
, static state => (ListCollectionView)state, this);
2892
if (
_sort
!= null)
2894
((INotifyCollectionChanged)
_sort
).CollectionChanged -= new NotifyCollectionChangedEventHandler(SortDescriptionsChanged);
2899
if (
_sort
!= null)
2901
Invariant.Assert(
_sort
.Count == 0, "must be empty SortDescription collection");
2902
((INotifyCollectionChanged)
_sort
).CollectionChanged += new NotifyCollectionChangedEventHandler(SortDescriptionsChanged);
2913
if (
_sort
.Count > 0)