1 write to _internalView
PresentationFramework (1)
src\Framework\System\Windows\Controls\ItemCollection.cs (1)
1680_internalView = new InnerItemCollectionView(_defaultCapacity, this);
20 references to _internalView
PresentationFramework (20)
src\Framework\System\Windows\Controls\ItemCollection.cs (20)
243int index = _internalView.Add(newItem); 266if (_internalView != null) 268_internalView.Clear(); 360if (_collectionView == _internalView) 363if (index >= _internalView.Count) 392_internalView.Insert(insertIndex, insertItem); 410_internalView.Remove(removeItem); 433_internalView.RemoveAt(removeIndex); 546if (index < 0 || index >= _internalView.Count) 549_internalView[index] = value; 779return _internalView.SyncRoot; 1523if (!IsUsingItemsSource && (_internalView != null) && (_internalView.RawCount > 0)) 1543SetCollectionView(_internalView); // it's ok if _internalView is null; just like uninitialized 1598return _internalView.LogicalChildren; 1652if (_collectionView == null && !IsUsingItemsSource && _internalView != null) 1656if (_internalView.IsEmpty) 1660SetCollectionView(_internalView); 1665SetCollectionView(_internalView); 1677if (_internalView == null)