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);
246
get { return
_group
.GroupDescriptions; }
255
get { return (IsGrouping) ?
_group
.Items : null; }
478
get { return
_group
.GroupBySelector; }
486
_group
.GroupBySelector = value;
521
get { return
_group
.IsDataInGroupOrder; }
522
set {
_group
.IsDataInGroupOrder = value; }
642
int index = (oldIndex == 0) ? 0 :
_group
.Items.Count - 1;
643
_group
.RemoveSpecialItem(index, NewItemPlaceholder, false /*loading*/);
647
int index = (newIndex == 0) ? 0 :
_group
.Items.Count;
648
_group
.InsertSpecialItem(index, NewItemPlaceholder, false /*loading*/);
915
index =
_group
.Items.Count - 1;
921
index =
_group
.Items.Count - 2;
930
_group
.RemoveSpecialItem(index, newItem, false /*loading*/);
2168
return
_group
.LeafIndexOf(item);
2221
return
_group
.LeafAt(index);
2275
return (!IsGrouping) ? InternalList.Contains(item) : (
_group
.LeafIndexOf(item) >= 0);
2289
return
_group
.GetLeafEnumerator();
2346
return
_group
.ItemCount;
2899
_group
.Clear();
2902
_group
.Initialize();
2904
_isGrouping = (
_group
.GroupBy != null);
2952
_group
.ActiveComparer = comparer;
2956
CollectionViewGroupInternal.IListComparer ilc =
_group
.ActiveComparer as CollectionViewGroupInternal.IListComparer;
2963
_group
.ActiveComparer = new CollectionViewGroupInternal.IListComparer(InternalList);
2971
_group
.InsertSpecialItem(0, NewItemPlaceholder, true /*loading*/);
2974
_group
.InsertSpecialItem(1, _newItem, true /*loading*/);
2988
_group
.AddToSubgroups(item, lsi, true /*loading*/);
2994
_group
.InsertSpecialItem(
_group
.Items.Count, _newItem, true /*loading*/);
2998
_group
.InsertSpecialItem(
_group
.Items.Count, NewItemPlaceholder, true /*loading*/);
3047
index =
_group
.Items.Count;
3053
index =
_group
.Items.Count - 1;
3057
_group
.InsertSpecialItem(index, item, false /*loading*/);
3061
_group
.AddToSubgroups(item, lsi, false /*loading*/);
3068
if (CanGroupNamesChange ||
_group
.RemoveFromSubgroups(item))
3071
_group
.RemoveItemFromSubgroupsByExhaustiveSearch(item);
3078
_group
.MoveWithinSubgroups(item, lsi, InternalList, oldIndex, newIndex);
3231
_group
.RestoreGrouping(lsi, deleteList);
3236
_group
.DeleteAbandonedGroupItems(deleteList);