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)
375foreach (Control c in _overlayList) 394foreach (Control c in _overlayList) 420Debug.Assert(_overlayList.IndexOf(control) == -1, $"Duplicate overlay in overlay service: {control.GetType().FullName}"); 421_overlayList.Add(control); 429return _overlayList.IndexOf(control); 438Debug.Assert(_overlayList.IndexOf(control) != -1, $"Control is not in overlay service: {control.GetType().FullName}"); 439_overlayList.Remove(control); 449Debug.Assert(_overlayList.IndexOf(control) == -1, $"Duplicate overlay in overlay service: {control.GetType().FullName}"); 450Control c = _overlayList[index]; 463for (int i = _overlayList.Count - 1; i >= 0; i--) 465Control overlayControl = _overlayList[i]; 480for (int i = _overlayList.Count - 1; i >= 0; i--) 482Control overlayControl = _overlayList[i]; 503foreach (Control c in _overlayList) 514foreach (Control c in _overlayList)