1 write to _group
PresentationFramework (1)
System\Windows\Data\ListCollectionView.cs (1)
68_group = new CollectionViewGroupRoot(this);
43 references to _group
PresentationFramework (43)
System\Windows\Data\ListCollectionView.cs (43)
69_group.GroupDescriptionChanged += new EventHandler(OnGroupDescriptionChanged); 70((INotifyCollectionChanged)_group).CollectionChanged += new NotifyCollectionChangedEventHandler(OnGroupChanged); 71((INotifyCollectionChanged)_group.GroupDescriptions).CollectionChanged += new NotifyCollectionChangedEventHandler(OnGroupByChanged); 246get { return _group.GroupDescriptions; } 255get { return (IsGrouping) ? _group.Items : null; } 478get { return _group.GroupBySelector; } 486_group.GroupBySelector = value; 521get { return _group.IsDataInGroupOrder; } 522set { _group.IsDataInGroupOrder = value; } 642int index = (oldIndex == 0) ? 0 : _group.Items.Count - 1; 643_group.RemoveSpecialItem(index, NewItemPlaceholder, false /*loading*/); 647int index = (newIndex == 0) ? 0 : _group.Items.Count; 648_group.InsertSpecialItem(index, NewItemPlaceholder, false /*loading*/); 909index = _group.Items.Count - 1; 915index = _group.Items.Count - 2; 924_group.RemoveSpecialItem(index, newItem, false /*loading*/); 2150return _group.LeafIndexOf(item); 2203return _group.LeafAt(index); 2257return (!IsGrouping) ? InternalList.Contains(item) : (_group.LeafIndexOf(item) >= 0); 2271return _group.GetLeafEnumerator(); 2328return _group.ItemCount; 2881_group.Clear(); 2884_group.Initialize(); 2886_isGrouping = (_group.GroupBy != null); 2934_group.ActiveComparer = comparer; 2938CollectionViewGroupInternal.IListComparer ilc = _group.ActiveComparer as CollectionViewGroupInternal.IListComparer; 2945_group.ActiveComparer = new CollectionViewGroupInternal.IListComparer(InternalList); 2953_group.InsertSpecialItem(0, NewItemPlaceholder, true /*loading*/); 2956_group.InsertSpecialItem(1, _newItem, true /*loading*/); 2970_group.AddToSubgroups(item, lsi, true /*loading*/); 2976_group.InsertSpecialItem(_group.Items.Count, _newItem, true /*loading*/); 2980_group.InsertSpecialItem(_group.Items.Count, NewItemPlaceholder, true /*loading*/); 3029index = _group.Items.Count; 3035index = _group.Items.Count - 1; 3039_group.InsertSpecialItem(index, item, false /*loading*/); 3043_group.AddToSubgroups(item, lsi, false /*loading*/); 3050if (CanGroupNamesChange || _group.RemoveFromSubgroups(item)) 3053_group.RemoveItemFromSubgroupsByExhaustiveSearch(item); 3060_group.MoveWithinSubgroups(item, lsi, InternalList, oldIndex, newIndex); 3213_group.RestoreGrouping(lsi, deleteList); 3218_group.DeleteAbandonedGroupItems(deleteList);