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)
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; 757return _internalView.SyncRoot; 1500if (!IsUsingItemsSource && (_internalView != null) && (_internalView.RawCount > 0)) 1520SetCollectionView(_internalView); // it's ok if _internalView is null; just like uninitialized 1575return _internalView.LogicalChildren; 1629if (_collectionView == null && !IsUsingItemsSource && _internalView != null) 1633if (_internalView.IsEmpty) 1637SetCollectionView(_internalView); 1642SetCollectionView(_internalView); 1654if (_internalView == null)