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*/);
909
index =
_group
.Items.Count - 1;
915
index =
_group
.Items.Count - 2;
924
_group
.RemoveSpecialItem(index, newItem, false /*loading*/);
2150
return
_group
.LeafIndexOf(item);
2203
return
_group
.LeafAt(index);
2257
return (!IsGrouping) ? InternalList.Contains(item) : (
_group
.LeafIndexOf(item) >= 0);
2271
return
_group
.GetLeafEnumerator();
2328
return
_group
.ItemCount;
2881
_group
.Clear();
2884
_group
.Initialize();
2886
_isGrouping = (
_group
.GroupBy != null);
2934
_group
.ActiveComparer = comparer;
2938
CollectionViewGroupInternal.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*/);
3029
index =
_group
.Items.Count;
3035
index =
_group
.Items.Count - 1;
3039
_group
.InsertSpecialItem(index, item, false /*loading*/);
3043
_group
.AddToSubgroups(item, lsi, false /*loading*/);
3050
if (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);