1 write to _sort
PresentationFramework (1)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (1)
749
_sort
= descriptions;
10 references to _sort
PresentationFramework (10)
src\Framework\MS\Internal\Controls\InnerItemCollectionView.cs (10)
66
if (
_sort
== null)
68
return
_sort
;
534
if (
_sort
!= null &&
_sort
.Count > 0 && ViewCount > 0)
536
SortFieldComparer.SortHelper(_viewList, new SortFieldComparer(
_sort
, Culture));
744
if (
_sort
!= null)
746
((INotifyCollectionChanged)
_sort
).CollectionChanged -= new NotifyCollectionChangedEventHandler(SortDescriptionsChanged);
751
if (
_sort
!= null)
753
Invariant.Assert(
_sort
.Count == 0, "must be empty SortDescription collection");
754
((INotifyCollectionChanged)
_sort
).CollectionChanged += new NotifyCollectionChangedEventHandler(SortDescriptionsChanged);