1 write to _group
PresentationFramework (1)
System\Windows\Data\BindingListCollectionView.cs (1)
47
_group
= new CollectionViewGroupRoot(this);
43 references to _group
PresentationFramework (43)
System\Windows\Data\BindingListCollectionView.cs (43)
48
_group
.GroupDescriptionChanged += new EventHandler(OnGroupDescriptionChanged);
49
((INotifyCollectionChanged)
_group
).CollectionChanged += new NotifyCollectionChangedEventHandler(OnGroupChanged);
50
((INotifyCollectionChanged)
_group
.GroupDescriptions).CollectionChanged += new NotifyCollectionChangedEventHandler(OnGroupByChanged);
343
get { return
_group
.GroupDescriptions; }
352
get { return (_isGrouping) ?
_group
.Items : null; }
364
get { return
_group
.GroupBySelector; }
372
_group
.GroupBySelector = value;
408
get { return
_group
.IsDataInGroupOrder; }
409
set {
_group
.IsDataInGroupOrder = value; }
529
int index = (oldIndex == 0) ? 0 :
_group
.Items.Count - 1;
530
_group
.RemoveSpecialItem(index, NewItemPlaceholder, false /*loading*/);
534
int index = (newIndex == 0) ? 0 :
_group
.Items.Count;
535
_group
.InsertSpecialItem(index, NewItemPlaceholder, false /*loading*/);
812
index =
_group
.Items.Count - 1;
818
index =
_group
.Items.Count - 2;
826
_group
.RemoveSpecialItem(index, newItem, false /*loading*/);
1561
_group
.MoveWithinSubgroups(args.OldItems[0], null, InternalList, args.OldStartingIndex, args.NewStartingIndex);
1673
return
_group
.ItemCount;
1702
return
_group
.LeafIndexOf(item);
1762
return
_group
.LeafAt(index);
1803
return (!_isGrouping) ? CollectionProxy.Contains(item) : (
_group
.LeafIndexOf(item) >= 0);
1817
return
_group
.GetLeafEnumerator();
2236
_group
.Clear();
2239
_group
.Initialize();
2241
_isGrouping = (
_group
.GroupBy != null);
2257
_group
.ActiveComparer = comparer;
2261
CollectionViewGroupInternal.IListComparer ilc =
_group
.ActiveComparer as CollectionViewGroupInternal.IListComparer;
2268
_group
.ActiveComparer = new CollectionViewGroupInternal.IListComparer(list);
2276
_group
.InsertSpecialItem(0, NewItemPlaceholder, true /*loading*/);
2279
_group
.InsertSpecialItem(1, _newItem, true /*loading*/);
2293
_group
.AddToSubgroups(item, lsi, true /*loading*/);
2299
_group
.InsertSpecialItem(
_group
.Items.Count, _newItem, true /*loading*/);
2303
_group
.InsertSpecialItem(
_group
.Items.Count, NewItemPlaceholder, true /*loading*/);
2351
index =
_group
.Items.Count;
2357
index =
_group
.Items.Count - 1;
2361
_group
.InsertSpecialItem(index, item, false /*loading*/);
2365
_group
.AddToSubgroups(item, null, false /*loading*/);
2372
if (CanGroupNamesChange ||
_group
.RemoveFromSubgroups(item))
2375
_group
.RemoveItemFromSubgroupsByExhaustiveSearch(item);
2407
_group
.RestoreGrouping(lsi, deleteList);
2412
_group
.DeleteAbandonedGroupItems(deleteList);