1 write to _internalView
PresentationFramework (1)
System\Windows\Controls\ItemCollection.cs (1)
1657
_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;
757
return
_internalView
.SyncRoot;
1500
if (!IsUsingItemsSource && (
_internalView
!= null) && (
_internalView
.RawCount > 0))
1520
SetCollectionView(
_internalView
); // it's ok if _internalView is null; just like uninitialized
1575
return
_internalView
.LogicalChildren;
1629
if (_collectionView == null && !IsUsingItemsSource &&
_internalView
!= null)
1633
if (
_internalView
.IsEmpty)
1637
SetCollectionView(
_internalView
);
1642
SetCollectionView(
_internalView
);
1654
if (
_internalView
== null)