1 write to _sort
WindowsBase (1)
Base\System\ComponentModel\GroupDescription.cs (1)
217
_sort
= descriptions;
12 references to _sort
WindowsBase (12)
Base\System\ComponentModel\GroupDescription.cs (12)
118
if (
_sort
== null)
120
return
_sort
;
131
return (
_sort
!= null &&
_sort
.Count > 0);
189
get { return
_sort
; }
210
if (
_sort
!= null)
212
((INotifyCollectionChanged)
_sort
).CollectionChanged -= new NotifyCollectionChangedEventHandler(SortDescriptionsChanged);
215
bool raiseChangeEvent = (
_sort
!= descriptions);
219
if (
_sort
!= null)
221
Invariant.Assert(
_sort
.Count == 0, "must be empty SortDescription collection");
222
((INotifyCollectionChanged)
_sort
).CollectionChanged += new NotifyCollectionChangedEventHandler(SortDescriptionsChanged);
235
if (
_sort
.Count > 0)