1 write to _components
PresentationFramework (1)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (1)
989
_components
= new List<MarkedHighlightComponent>();
15 references to _components
PresentationFramework (15)
MS\Internal\Annotations\Component\MarkedHighlightComponent.cs (15)
1002
Debug.Assert(
_components
!= null, "_components are null");
1005
if (
_components
.Count == 0)
1016
for (; i <
_components
.Count; i++)
1018
if (Compare(
_components
[i], component) > 0)
1022
_components
.Insert(i, component);
1025
for (; i <
_components
.Count; i++)
1026
_components
[i].SetTabIndex(i);
1037
Debug.Assert(
_components
!= null, "_components are null");
1040
for (; ind <
_components
.Count; ind++)
1042
if (
_components
[ind] == component)
1046
if (ind <
_components
.Count)
1048
_components
.RemoveAt(ind);
1051
for (; ind <
_components
.Count; ind++)
1052
_components
[ind].SetTabIndex(ind);
1060
return
_components
;