1 write to _components
PresentationFramework (1)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
998
_components
= new List<MarkedHighlightComponent>();
15 references to _components
PresentationFramework (15)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (15)
1011
Debug.Assert(
_components
!= null, "_components are null");
1014
if (
_components
.Count == 0)
1025
for (; i <
_components
.Count; i++)
1027
if (Compare(
_components
[i], component) > 0)
1031
_components
.Insert(i, component);
1034
for (; i <
_components
.Count; i++)
1035
_components
[i].SetTabIndex(i);
1046
Debug.Assert(
_components
!= null, "_components are null");
1049
for (; ind <
_components
.Count; ind++)
1051
if (
_components
[ind] == component)
1055
if (ind <
_components
.Count)
1057
_components
.RemoveAt(ind);
1060
for (; ind <
_components
.Count; ind++)
1061
_components
[ind].SetTabIndex(ind);
1069
return
_components
;