1 write to _components
PresentationFramework (1)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
1001
_components
= new List<MarkedHighlightComponent>();
15 references to _components
PresentationFramework (15)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (15)
1014
Debug.Assert(
_components
!= null, "_components are null");
1017
if (
_components
.Count == 0)
1028
for (; i <
_components
.Count; i++)
1030
if (Compare(
_components
[i], component) > 0)
1034
_components
.Insert(i, component);
1037
for (; i <
_components
.Count; i++)
1038
_components
[i].SetTabIndex(i);
1049
Debug.Assert(
_components
!= null, "_components are null");
1052
for (; ind <
_components
.Count; ind++)
1054
if (
_components
[ind] == component)
1058
if (ind <
_components
.Count)
1060
_components
.RemoveAt(ind);
1063
for (; ind <
_components
.Count; ind++)
1064
_components
[ind].SetTabIndex(ind);
1072
return
_components
;