2 writes to InternalList
PresentationFramework (2)
System\Windows\Data\BindingListCollectionView.cs (2)
40
InternalList
= list;
190
InternalList
= null;
48 references to InternalList
PresentationFramework (48)
System\Windows\Data\BindingListCollectionView.cs (48)
185
if (
InternalList
!= null &&
InternalList
.SupportsChangeNotification)
187
InternalList
.ListChanged -= new ListChangedEventHandler(OnListChanged);
237
if (
InternalList
.SupportsSorting)
263
return
InternalList
.SupportsSorting;
548
get { return !IsEditingItem &&
InternalList
.AllowNew; }
572
BindingOperations.AccessCollection(
InternalList
,
578
newItem =
InternalList
.AddNew();
656
ICancelAddNew ican =
InternalList
as ICancelAddNew;
659
BindingOperations.AccessCollection(
InternalList
,
684
base.OnCollectionChanged(
InternalList
, args);
703
ICancelAddNew ican =
InternalList
as ICancelAddNew;
706
BindingOperations.AccessCollection(
InternalList
,
861
get { return !IsEditingItem && !IsAddingNew &&
InternalList
.AllowRemove; }
899
BindingOperations.AccessCollection(
InternalList
,
906
if (index >=
InternalList
.Count || !System.Windows.Controls.ItemsControl.EqualsEx(item, GetItemAt(index)))
908
index =
InternalList
.IndexOf(item);
916
index =
InternalList
.IndexOf(item);
928
InternalList
.RemoveAt(index);
992
BindingOperations.AccessCollection(
InternalList
,
1285
BindingOperations.AccessCollection(
InternalList
,
1312
BindingOperations.AccessCollection(
InternalList
,
1316
InternalList
.ApplySort(sorts[0].PropertyDescriptor, sorts[0].SortDirection);
1328
BindingOperations.AccessCollection(
InternalList
,
1331
InternalList
.RemoveSort();
1411
BindingOperations.AccessCollection(
InternalList
,
1436
_cachedList = new ArrayList(
InternalList
);
1446
foreach (object item in
InternalList
)
1455
_shadowList = new ArrayList(
InternalList
);
1545
_group.MoveWithinSubgroups(args.OldItems[0], null,
InternalList
, args.OldStartingIndex, args.NewStartingIndex);
1867
if (
InternalList
.SupportsChangeNotification)
1869
BindingOperations.AccessCollection(
InternalList
,
1872
InternalList
.ListChanged += new ListChangedEventHandler(OnListChanged);
1903
if (
InternalList
.Count == _cachedList.Count)
1907
Debug.Assert(_newItem ==
InternalList
[index], "unexpected item while committing AddNew");
1914
item =
InternalList
[index];
1917
if (
InternalList
.Count != _cachedList.Count)
1918
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
1929
if (
InternalList
.Count != _cachedList.Count)
1930
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
1966
Debug.Assert(item ==
InternalList
[index], "unexpected item while committing AddNew");
1972
item =
InternalList
[index];
1986
if (
InternalList
.Count != _cachedList.Count)
1987
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
1995
item =
InternalList
[args.NewIndex];
2022
_newItemIndex =
InternalList
.IndexOf(_newItem);
2138
return
InternalList
;
2182
if ((itl =
InternalList
as ITypedList) != null)