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)
227int index = _internalView.Add(newItem); 250if (_internalView != null) 252_internalView.Clear(); 341if (_collectionView == _internalView) 344ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _internalView.Count); 372_internalView.Insert(insertIndex, insertItem); 390_internalView.Remove(removeItem); 413_internalView.RemoveAt(removeIndex); 527ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _internalView.Count); 529_internalView[index] = value; 759return _internalView.SyncRoot; 1503if (!IsUsingItemsSource && (_internalView != null) && (_internalView.RawCount > 0)) 1523SetCollectionView(_internalView); // it's ok if _internalView is null; just like uninitialized 1578return _internalView.LogicalChildren; 1632if (_collectionView == null && !IsUsingItemsSource && _internalView != null) 1636if (_internalView.IsEmpty) 1640SetCollectionView(_internalView); 1645SetCollectionView(_internalView); 1657if (_internalView == null)