1 write to _sort
PresentationFramework (1)
src\Framework\System\Windows\Data\ListCollectionView.cs (1)
2934
_sort
= descriptions;
11 references to _sort
PresentationFramework (11)
src\Framework\System\Windows\Data\ListCollectionView.cs (11)
404
if (
_sort
== null)
406
return
_sort
;
2456
get { return ((
_sort
!= null) && (
_sort
.Count > 0)); }
2910
ActiveComparer = ListCollectionView.PrepareComparer(_customSort,
_sort
, () => { return this; });
2929
if (
_sort
!= null)
2931
((INotifyCollectionChanged)
_sort
).CollectionChanged -= new NotifyCollectionChangedEventHandler(SortDescriptionsChanged);
2936
if (
_sort
!= null)
2938
Invariant.Assert(
_sort
.Count == 0, "must be empty SortDescription collection");
2939
((INotifyCollectionChanged)
_sort
).CollectionChanged += new NotifyCollectionChangedEventHandler(SortDescriptionsChanged);
2950
if (
_sort
.Count > 0)