1 write to _components
PresentationFramework (1)
src\Framework\MS\Internal\Annotations\Component\MArkedHighlightComponent.cs (1)
1023_components = new List<MarkedHighlightComponent>();
15 references to _components
PresentationFramework (15)
src\Framework\MS\Internal\Annotations\Component\MArkedHighlightComponent.cs (15)
1036Debug.Assert(_components != null, "_components are null"); 1039if (_components.Count == 0) 1050for (; i < _components.Count; i++) 1052if (Compare(_components[i], component) > 0) 1056_components.Insert(i, component); 1059for (; i < _components.Count; i++) 1060_components[i].SetTabIndex(i); 1072Debug.Assert(_components != null, "_components are null"); 1075for (; ind < _components.Count; ind++) 1077if (_components[ind] == component) 1081if (ind < _components.Count) 1083_components.RemoveAt(ind); 1086for (; ind < _components.Count; ind++) 1087_components[ind].SetTabIndex(ind); 1095return _components;