1 write to _internalView
PresentationFramework (1)
System\Windows\Controls\ItemCollection.cs (1)
1660
_internalView
= new InnerItemCollectionView(_defaultCapacity, this);
20 references to _internalView
PresentationFramework (20)
System\Windows\Controls\ItemCollection.cs (20)
227
int index =
_internalView
.Add(newItem);
250
if (
_internalView
!= null)
252
_internalView
.Clear();
341
if (_collectionView ==
_internalView
)
344
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index,
_internalView
.Count);
372
_internalView
.Insert(insertIndex, insertItem);
390
_internalView
.Remove(removeItem);
413
_internalView
.RemoveAt(removeIndex);
527
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index,
_internalView
.Count);
529
_internalView
[index] = value;
759
return
_internalView
.SyncRoot;
1503
if (!IsUsingItemsSource && (
_internalView
!= null) && (
_internalView
.RawCount > 0))
1523
SetCollectionView(
_internalView
); // it's ok if _internalView is null; just like uninitialized
1578
return
_internalView
.LogicalChildren;
1632
if (_collectionView == null && !IsUsingItemsSource &&
_internalView
!= null)
1636
if (
_internalView
.IsEmpty)
1640
SetCollectionView(
_internalView
);
1645
SetCollectionView(
_internalView
);
1657
if (
_internalView
== null)