1 write to _internalView
PresentationFramework (1)
System\Windows\Controls\ItemCollection.cs (1)
1669_internalView = new InnerItemCollectionView(_defaultCapacity, this);
20 references to _internalView
PresentationFramework (20)
System\Windows\Controls\ItemCollection.cs (20)
236int index = _internalView.Add(newItem); 259if (_internalView != null) 261_internalView.Clear(); 350if (_collectionView == _internalView) 353ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _internalView.Count); 381_internalView.Insert(insertIndex, insertItem); 399_internalView.Remove(removeItem); 422_internalView.RemoveAt(removeIndex); 536ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual(index, _internalView.Count); 538_internalView[index] = value; 768return _internalView.SyncRoot; 1512if (!IsUsingItemsSource && (_internalView != null) && (_internalView.RawCount > 0)) 1532SetCollectionView(_internalView); // it's ok if _internalView is null; just like uninitialized 1587return _internalView.LogicalChildren; 1641if (_collectionView == null && !IsUsingItemsSource && _internalView != null) 1645if (_internalView.IsEmpty) 1649SetCollectionView(_internalView); 1654SetCollectionView(_internalView); 1666if (_internalView == null)