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)
404if (_sort == null) 406return _sort; 2456get { return ((_sort != null) && (_sort.Count > 0)); } 2910ActiveComparer = ListCollectionView.PrepareComparer(_customSort, _sort, () => { return this; }); 2929if (_sort != null) 2931((INotifyCollectionChanged)_sort).CollectionChanged -= new NotifyCollectionChangedEventHandler(SortDescriptionsChanged); 2936if (_sort != null) 2938Invariant.Assert(_sort.Count == 0, "must be empty SortDescription collection"); 2939((INotifyCollectionChanged)_sort).CollectionChanged += new NotifyCollectionChangedEventHandler(SortDescriptionsChanged); 2950if (_sort.Count > 0)