1 write to _group
PresentationFramework (1)
System\Windows\Data\BindingListCollectionView.cs (1)
46
_group
= new CollectionViewGroupRoot(this);
43 references to _group
PresentationFramework (43)
System\Windows\Data\BindingListCollectionView.cs (43)
47
_group
.GroupDescriptionChanged += new EventHandler(OnGroupDescriptionChanged);
48
((INotifyCollectionChanged)
_group
).CollectionChanged += new NotifyCollectionChangedEventHandler(OnGroupChanged);
49
((INotifyCollectionChanged)
_group
.GroupDescriptions).CollectionChanged += new NotifyCollectionChangedEventHandler(OnGroupByChanged);
342
get { return
_group
.GroupDescriptions; }
351
get { return (_isGrouping) ?
_group
.Items : null; }
363
get { return
_group
.GroupBySelector; }
371
_group
.GroupBySelector = value;
407
get { return
_group
.IsDataInGroupOrder; }
408
set {
_group
.IsDataInGroupOrder = value; }
528
int index = (oldIndex == 0) ? 0 :
_group
.Items.Count - 1;
529
_group
.RemoveSpecialItem(index, NewItemPlaceholder, false /*loading*/);
533
int index = (newIndex == 0) ? 0 :
_group
.Items.Count;
534
_group
.InsertSpecialItem(index, NewItemPlaceholder, false /*loading*/);
802
index =
_group
.Items.Count - 1;
808
index =
_group
.Items.Count - 2;
816
_group
.RemoveSpecialItem(index, newItem, false /*loading*/);
1545
_group
.MoveWithinSubgroups(args.OldItems[0], null, InternalList, args.OldStartingIndex, args.NewStartingIndex);
1657
return
_group
.ItemCount;
1686
return
_group
.LeafIndexOf(item);
1746
return
_group
.LeafAt(index);
1787
return (!_isGrouping) ? CollectionProxy.Contains(item) : (
_group
.LeafIndexOf(item) >= 0);
1801
return
_group
.GetLeafEnumerator();
2220
_group
.Clear();
2223
_group
.Initialize();
2225
_isGrouping = (
_group
.GroupBy != null);
2241
_group
.ActiveComparer = comparer;
2245
CollectionViewGroupInternal.IListComparer ilc =
_group
.ActiveComparer as CollectionViewGroupInternal.IListComparer;
2252
_group
.ActiveComparer = new CollectionViewGroupInternal.IListComparer(list);
2260
_group
.InsertSpecialItem(0, NewItemPlaceholder, true /*loading*/);
2263
_group
.InsertSpecialItem(1, _newItem, true /*loading*/);
2277
_group
.AddToSubgroups(item, lsi, true /*loading*/);
2283
_group
.InsertSpecialItem(
_group
.Items.Count, _newItem, true /*loading*/);
2287
_group
.InsertSpecialItem(
_group
.Items.Count, NewItemPlaceholder, true /*loading*/);
2335
index =
_group
.Items.Count;
2341
index =
_group
.Items.Count - 1;
2345
_group
.InsertSpecialItem(index, item, false /*loading*/);
2349
_group
.AddToSubgroups(item, null, false /*loading*/);
2356
if (CanGroupNamesChange ||
_group
.RemoveFromSubgroups(item))
2359
_group
.RemoveItemFromSubgroupsByExhaustiveSearch(item);
2391
_group
.RestoreGrouping(lsi, deleteList);
2396
_group
.DeleteAbandonedGroupItems(deleteList);