1 write to _group
PresentationFramework (1)
System\Windows\Data\ListCollectionView.cs (1)
67
_group
= new CollectionViewGroupRoot(this);
43 references to _group
PresentationFramework (43)
System\Windows\Data\ListCollectionView.cs (43)
68
_group
.GroupDescriptionChanged += new EventHandler(OnGroupDescriptionChanged);
69
((INotifyCollectionChanged)
_group
).CollectionChanged += new NotifyCollectionChangedEventHandler(OnGroupChanged);
70
((INotifyCollectionChanged)
_group
.GroupDescriptions).CollectionChanged += new NotifyCollectionChangedEventHandler(OnGroupByChanged);
245
get { return
_group
.GroupDescriptions; }
254
get { return (IsGrouping) ?
_group
.Items : null; }
477
get { return
_group
.GroupBySelector; }
485
_group
.GroupBySelector = value;
520
get { return
_group
.IsDataInGroupOrder; }
521
set {
_group
.IsDataInGroupOrder = value; }
641
int index = (oldIndex == 0) ? 0 :
_group
.Items.Count - 1;
642
_group
.RemoveSpecialItem(index, NewItemPlaceholder, false /*loading*/);
646
int index = (newIndex == 0) ? 0 :
_group
.Items.Count;
647
_group
.InsertSpecialItem(index, NewItemPlaceholder, false /*loading*/);
908
index =
_group
.Items.Count - 1;
914
index =
_group
.Items.Count - 2;
923
_group
.RemoveSpecialItem(index, newItem, false /*loading*/);
2149
return
_group
.LeafIndexOf(item);
2202
return
_group
.LeafAt(index);
2256
return (!IsGrouping) ? InternalList.Contains(item) : (
_group
.LeafIndexOf(item) >= 0);
2270
return
_group
.GetLeafEnumerator();
2327
return
_group
.ItemCount;
2880
_group
.Clear();
2883
_group
.Initialize();
2885
_isGrouping = (
_group
.GroupBy != null);
2933
_group
.ActiveComparer = comparer;
2937
CollectionViewGroupInternal.IListComparer ilc =
_group
.ActiveComparer as CollectionViewGroupInternal.IListComparer;
2944
_group
.ActiveComparer = new CollectionViewGroupInternal.IListComparer(InternalList);
2952
_group
.InsertSpecialItem(0, NewItemPlaceholder, true /*loading*/);
2955
_group
.InsertSpecialItem(1, _newItem, true /*loading*/);
2969
_group
.AddToSubgroups(item, lsi, true /*loading*/);
2975
_group
.InsertSpecialItem(
_group
.Items.Count, _newItem, true /*loading*/);
2979
_group
.InsertSpecialItem(
_group
.Items.Count, NewItemPlaceholder, true /*loading*/);
3028
index =
_group
.Items.Count;
3034
index =
_group
.Items.Count - 1;
3038
_group
.InsertSpecialItem(index, item, false /*loading*/);
3042
_group
.AddToSubgroups(item, lsi, false /*loading*/);
3049
if (CanGroupNamesChange ||
_group
.RemoveFromSubgroups(item))
3052
_group
.RemoveItemFromSubgroupsByExhaustiveSearch(item);
3059
_group
.MoveWithinSubgroups(item, lsi, InternalList, oldIndex, newIndex);
3212
_group
.RestoreGrouping(lsi, deleteList);
3217
_group
.DeleteAbandonedGroupItems(deleteList);