1 write to _components
PresentationFramework (1)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
995
_components
= new List<MarkedHighlightComponent>();
15 references to _components
PresentationFramework (15)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (15)
1008
Debug.Assert(
_components
!= null, "_components are null");
1011
if (
_components
.Count == 0)
1022
for (; i <
_components
.Count; i++)
1024
if (Compare(
_components
[i], component) > 0)
1028
_components
.Insert(i, component);
1031
for (; i <
_components
.Count; i++)
1032
_components
[i].SetTabIndex(i);
1043
Debug.Assert(
_components
!= null, "_components are null");
1046
for (; ind <
_components
.Count; ind++)
1048
if (
_components
[ind] == component)
1052
if (ind <
_components
.Count)
1054
_components
.RemoveAt(ind);
1057
for (; ind <
_components
.Count; ind++)
1058
_components
[ind].SetTabIndex(ind);
1066
return
_components
;