2 writes to InternalList
PresentationFramework (2)
System\Windows\Data\BindingListCollectionView.cs (2)
46
InternalList
= list;
196
InternalList
= null;
48 references to InternalList
PresentationFramework (48)
System\Windows\Data\BindingListCollectionView.cs (48)
191
if (
InternalList
!= null &&
InternalList
.SupportsChangeNotification)
193
InternalList
.ListChanged -= new ListChangedEventHandler(OnListChanged);
243
if (
InternalList
.SupportsSorting)
269
return
InternalList
.SupportsSorting;
554
get { return !IsEditingItem &&
InternalList
.AllowNew; }
578
BindingOperations.AccessCollection(
InternalList
,
584
newItem =
InternalList
.AddNew();
668
ICancelAddNew ican =
InternalList
as ICancelAddNew;
671
BindingOperations.AccessCollection(
InternalList
,
696
base.OnCollectionChanged(
InternalList
, args);
715
ICancelAddNew ican =
InternalList
as ICancelAddNew;
718
BindingOperations.AccessCollection(
InternalList
,
876
get { return !IsEditingItem && !IsAddingNew &&
InternalList
.AllowRemove; }
914
BindingOperations.AccessCollection(
InternalList
,
921
if (index >=
InternalList
.Count || !System.Windows.Controls.ItemsControl.EqualsEx(item, GetItemAt(index)))
923
index =
InternalList
.IndexOf(item);
931
index =
InternalList
.IndexOf(item);
943
InternalList
.RemoveAt(index);
1010
BindingOperations.AccessCollection(
InternalList
,
1306
BindingOperations.AccessCollection(
InternalList
,
1333
BindingOperations.AccessCollection(
InternalList
,
1337
InternalList
.ApplySort(sorts[0].PropertyDescriptor, sorts[0].SortDirection);
1349
BindingOperations.AccessCollection(
InternalList
,
1352
InternalList
.RemoveSort();
1432
BindingOperations.AccessCollection(
InternalList
,
1457
_cachedList = new ArrayList(
InternalList
);
1467
foreach (object item in
InternalList
)
1476
_shadowList = new ArrayList(
InternalList
);
1566
_group.MoveWithinSubgroups(args.OldItems[0], null,
InternalList
, args.OldStartingIndex, args.NewStartingIndex);
1888
if (
InternalList
.SupportsChangeNotification)
1890
BindingOperations.AccessCollection(
InternalList
,
1893
InternalList
.ListChanged += new ListChangedEventHandler(OnListChanged);
1924
if (
InternalList
.Count == _cachedList.Count)
1928
Debug.Assert(_newItem ==
InternalList
[index], "unexpected item while committing AddNew");
1935
item =
InternalList
[index];
1938
if (
InternalList
.Count != _cachedList.Count)
1939
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
1950
if (
InternalList
.Count != _cachedList.Count)
1951
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
1987
Debug.Assert(item ==
InternalList
[index], "unexpected item while committing AddNew");
1993
item =
InternalList
[index];
2007
if (
InternalList
.Count != _cachedList.Count)
2008
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
2016
item =
InternalList
[args.NewIndex];
2043
_newItemIndex =
InternalList
.IndexOf(_newItem);
2159
return
InternalList
;
2203
if ((itl =
InternalList
as ITypedList) != null)