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();
663
ICancelAddNew ican =
InternalList
as ICancelAddNew;
666
BindingOperations.AccessCollection(
InternalList
,
691
base.OnCollectionChanged(
InternalList
, args);
710
ICancelAddNew ican =
InternalList
as ICancelAddNew;
713
BindingOperations.AccessCollection(
InternalList
,
871
get { return !IsEditingItem && !IsAddingNew &&
InternalList
.AllowRemove; }
909
BindingOperations.AccessCollection(
InternalList
,
916
if (index >=
InternalList
.Count || !System.Windows.Controls.ItemsControl.EqualsEx(item, GetItemAt(index)))
918
index =
InternalList
.IndexOf(item);
926
index =
InternalList
.IndexOf(item);
938
InternalList
.RemoveAt(index);
1005
BindingOperations.AccessCollection(
InternalList
,
1301
BindingOperations.AccessCollection(
InternalList
,
1328
BindingOperations.AccessCollection(
InternalList
,
1332
InternalList
.ApplySort(sorts[0].PropertyDescriptor, sorts[0].SortDirection);
1344
BindingOperations.AccessCollection(
InternalList
,
1347
InternalList
.RemoveSort();
1427
BindingOperations.AccessCollection(
InternalList
,
1452
_cachedList = new ArrayList(
InternalList
);
1462
foreach (object item in
InternalList
)
1471
_shadowList = new ArrayList(
InternalList
);
1561
_group.MoveWithinSubgroups(args.OldItems[0], null,
InternalList
, args.OldStartingIndex, args.NewStartingIndex);
1883
if (
InternalList
.SupportsChangeNotification)
1885
BindingOperations.AccessCollection(
InternalList
,
1888
InternalList
.ListChanged += new ListChangedEventHandler(OnListChanged);
1919
if (
InternalList
.Count == _cachedList.Count)
1923
Debug.Assert(_newItem ==
InternalList
[index], "unexpected item while committing AddNew");
1930
item =
InternalList
[index];
1933
if (
InternalList
.Count != _cachedList.Count)
1934
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
1945
if (
InternalList
.Count != _cachedList.Count)
1946
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
1982
Debug.Assert(item ==
InternalList
[index], "unexpected item while committing AddNew");
1988
item =
InternalList
[index];
2002
if (
InternalList
.Count != _cachedList.Count)
2003
throw new InvalidOperationException(SR.Format(SR.InconsistentBindingList,
InternalList
, args.ListChangedType));
2011
item =
InternalList
[args.NewIndex];
2038
_newItemIndex =
InternalList
.IndexOf(_newItem);
2154
return
InternalList
;
2198
if ((itl =
InternalList
as ITypedList) != null)