2 writes to InternalList
PresentationFramework (2)
System\Windows\Data\BindingListCollectionView.cs (2)
41
InternalList
= list;
191
InternalList
= null;
48 references to InternalList
PresentationFramework (48)
System\Windows\Data\BindingListCollectionView.cs (48)
186
if (
InternalList
!= null &&
InternalList
.SupportsChangeNotification)
188
InternalList
.ListChanged -= new ListChangedEventHandler(OnListChanged);
238
if (
InternalList
.SupportsSorting)
264
return
InternalList
.SupportsSorting;
549
get { return !IsEditingItem &&
InternalList
.AllowNew; }
573
BindingOperations.AccessCollection(
InternalList
,
579
newItem =
InternalList
.AddNew();
657
ICancelAddNew ican =
InternalList
as ICancelAddNew;
660
BindingOperations.AccessCollection(
InternalList
,
685
base.OnCollectionChanged(
InternalList
, args);
704
ICancelAddNew ican =
InternalList
as ICancelAddNew;
707
BindingOperations.AccessCollection(
InternalList
,
862
get { return !IsEditingItem && !IsAddingNew &&
InternalList
.AllowRemove; }
900
BindingOperations.AccessCollection(
InternalList
,
907
if (index >=
InternalList
.Count || !System.Windows.Controls.ItemsControl.EqualsEx(item, GetItemAt(index)))
909
index =
InternalList
.IndexOf(item);
917
index =
InternalList
.IndexOf(item);
929
InternalList
.RemoveAt(index);
993
BindingOperations.AccessCollection(
InternalList
,
1286
BindingOperations.AccessCollection(
InternalList
,
1313
BindingOperations.AccessCollection(
InternalList
,
1317
InternalList
.ApplySort(sorts[0].PropertyDescriptor, sorts[0].SortDirection);
1329
BindingOperations.AccessCollection(
InternalList
,
1332
InternalList
.RemoveSort();
1412
BindingOperations.AccessCollection(
InternalList
,
1437
_cachedList = new ArrayList(
InternalList
);
1447
foreach (object item in
InternalList
)
1456
_shadowList = new ArrayList(
InternalList
);
1546
_group.MoveWithinSubgroups(args.OldItems[0], null,
InternalList
, args.OldStartingIndex, args.NewStartingIndex);
1868
if (
InternalList
.SupportsChangeNotification)
1870
BindingOperations.AccessCollection(
InternalList
,
1873
InternalList
.ListChanged += new ListChangedEventHandler(OnListChanged);
1904
if (
InternalList
.Count == _cachedList.Count)
1908
Debug.Assert(_newItem ==
InternalList
[index], "unexpected item while committing AddNew");
1915
item =
InternalList
[index];
1918
if (
InternalList
.Count != _cachedList.Count)
1919
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
1930
if (
InternalList
.Count != _cachedList.Count)
1931
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
1967
Debug.Assert(item ==
InternalList
[index], "unexpected item while committing AddNew");
1973
item =
InternalList
[index];
1987
if (
InternalList
.Count != _cachedList.Count)
1988
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
1996
item =
InternalList
[args.NewIndex];
2023
_newItemIndex =
InternalList
.IndexOf(_newItem);
2139
return
InternalList
;
2183
if ((itl =
InternalList
as ITypedList) != null)