1 write to _internalView
PresentationFramework (1)
System\Windows\Controls\ItemCollection.cs (1)
1669
_internalView
= new InnerItemCollectionView(_defaultCapacity, this);
20 references to _internalView
PresentationFramework (20)
System\Windows\Controls\ItemCollection.cs (20)
236
int index =
_internalView
.Add(newItem);
259
if (
_internalView
!= null)
261
_internalView
.Clear();
350
if (_collectionView ==
_internalView
)
353
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index,
_internalView
.Count);
381
_internalView
.Insert(insertIndex, insertItem);
399
_internalView
.Remove(removeItem);
422
_internalView
.RemoveAt(removeIndex);
536
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index,
_internalView
.Count);
538
_internalView
[index] = value;
768
return
_internalView
.SyncRoot;
1512
if (!IsUsingItemsSource && (
_internalView
!= null) && (
_internalView
.RawCount > 0))
1532
SetCollectionView(
_internalView
); // it's ok if _internalView is null; just like uninitialized
1587
return
_internalView
.LogicalChildren;
1641
if (_collectionView == null && !IsUsingItemsSource &&
_internalView
!= null)
1645
if (
_internalView
.IsEmpty)
1649
SetCollectionView(
_internalView
);
1654
SetCollectionView(
_internalView
);
1666
if (
_internalView
== null)