1 write to _internalView
PresentationFramework (1)
System\Windows\Controls\ItemCollection.cs (1)
1651_internalView = new InnerItemCollectionView(_defaultCapacity, this);
19 references to _internalView
PresentationFramework (19)
System\Windows\Controls\ItemCollection.cs (19)
227int index = _internalView.Add(newItem); 250_internalView?.Clear(); 338if (_collectionView == _internalView) 341ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _internalView.Count); 369_internalView.Insert(insertIndex, insertItem); 387_internalView.Remove(removeItem); 410_internalView.RemoveAt(removeIndex); 524ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _internalView.Count); 526_internalView[index] = value; 754return _internalView.SyncRoot; 1497if (!IsUsingItemsSource && (_internalView != null) && (_internalView.RawCount > 0)) 1517SetCollectionView(_internalView); // it's ok if _internalView is null; just like uninitialized 1572return _internalView.LogicalChildren; 1623if (_collectionView == null && !IsUsingItemsSource && _internalView != null) 1627if (_internalView.IsEmpty) 1631SetCollectionView(_internalView); 1636SetCollectionView(_internalView); 1648if (_internalView == null)