1 write to _overlayList
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignerFrame.cs (1)
350
_overlayList
= [];
15 references to _overlayList
System.Windows.Forms.Design (15)
System\Windows\Forms\Design\DesignerFrame.cs (15)
372
foreach (Control c in
_overlayList
)
391
foreach (Control c in
_overlayList
)
417
Debug.Assert(
_overlayList
.IndexOf(control) == -1, $"Duplicate overlay in overlay service: {control.GetType().FullName}");
418
_overlayList
.Add(control);
426
return
_overlayList
.IndexOf(control);
435
Debug.Assert(
_overlayList
.IndexOf(control) != -1, $"Control is not in overlay service: {control.GetType().FullName}");
436
_overlayList
.Remove(control);
446
Debug.Assert(
_overlayList
.IndexOf(control) == -1, $"Duplicate overlay in overlay service: {control.GetType().FullName}");
447
Control c =
_overlayList
[index];
460
for (int i =
_overlayList
.Count - 1; i >= 0; i--)
462
Control overlayControl =
_overlayList
[i];
477
for (int i =
_overlayList
.Count - 1; i >= 0; i--)
479
Control overlayControl =
_overlayList
[i];
500
foreach (Control c in
_overlayList
)
511
foreach (Control c in
_overlayList
)