1 write to _overlayList
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignerFrame.cs (1)
353
_overlayList
= [];
15 references to _overlayList
System.Windows.Forms.Design (15)
System\Windows\Forms\Design\DesignerFrame.cs (15)
375
foreach (Control c in
_overlayList
)
394
foreach (Control c in
_overlayList
)
420
Debug.Assert(
_overlayList
.IndexOf(control) == -1, $"Duplicate overlay in overlay service: {control.GetType().FullName}");
421
_overlayList
.Add(control);
429
return
_overlayList
.IndexOf(control);
438
Debug.Assert(
_overlayList
.IndexOf(control) != -1, $"Control is not in overlay service: {control.GetType().FullName}");
439
_overlayList
.Remove(control);
449
Debug.Assert(
_overlayList
.IndexOf(control) == -1, $"Duplicate overlay in overlay service: {control.GetType().FullName}");
450
Control c =
_overlayList
[index];
463
for (int i =
_overlayList
.Count - 1; i >= 0; i--)
465
Control overlayControl =
_overlayList
[i];
480
for (int i =
_overlayList
.Count - 1; i >= 0; i--)
482
Control overlayControl =
_overlayList
[i];
503
foreach (Control c in
_overlayList
)
514
foreach (Control c in
_overlayList
)