1 write to MyGroupDescriptions
PresentationFramework (1)
System\Windows\Controls\ItemCollection.cs (1)
681
MyGroupDescriptions
= new ObservableCollection<GroupDescription>();
8 references to MyGroupDescriptions
PresentationFramework (8)
System\Windows\Controls\ItemCollection.cs (8)
679
if (
MyGroupDescriptions
== null)
685
CloneList(
MyGroupDescriptions
, _collectionView.GroupDescriptions);
688
((INotifyCollectionChanged)
MyGroupDescriptions
).CollectionChanged += new NotifyCollectionChangedEventHandler(GroupDescriptionsChanged);
690
return
MyGroupDescriptions
;
1762
ObservableCollection<GroupDescription> source = (IsGroupingSet) ?
MyGroupDescriptions
: _collectionView.GroupDescriptions;
1763
ObservableCollection<GroupDescription> target = (IsGroupingSet) ? _collectionView.GroupDescriptions :
MyGroupDescriptions
;
2038
SynchronizeCollections<GroupDescription>(e,
MyGroupDescriptions
, _collectionView.GroupDescriptions);
2054
SynchronizeCollections<GroupDescription>(e, _collectionView.GroupDescriptions,
MyGroupDescriptions
);