1 write to _items
PresentationFramework (1)
src\Framework\System\Windows\Controls\ItemContainerGenerator.cs (1)
1283_items = value;
12 references to _items
PresentationFramework (12)
src\Framework\System\Windows\Controls\ItemContainerGenerator.cs (12)
153if (_itemsReadOnly == null && _items != null) 155_itemsReadOnly = new ReadOnlyCollection<object>(new ListOfObject(_items)); 1024if (accumulatedCount != _items.Count) 1026errors.Add(SR.Get(SRID.Generator_CountIsWrong, accumulatedCount, _items.Count)); 1041object actualItem = (index < _items.Count) ? _items[index] : null; 1272get { return _items; } 1275if (_items != value) 1277INotifyCollectionChanged incc = _items as INotifyCollectionChanged; 1278if (_items != Host.View && incc != null) 1286incc = _items as INotifyCollectionChanged; 1287if (_items != Host.View && incc != null)