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)
372foreach (Control c in _overlayList) 391foreach (Control c in _overlayList) 417Debug.Assert(_overlayList.IndexOf(control) == -1, $"Duplicate overlay in overlay service: {control.GetType().FullName}"); 418_overlayList.Add(control); 426return _overlayList.IndexOf(control); 435Debug.Assert(_overlayList.IndexOf(control) != -1, $"Control is not in overlay service: {control.GetType().FullName}"); 436_overlayList.Remove(control); 446Debug.Assert(_overlayList.IndexOf(control) == -1, $"Duplicate overlay in overlay service: {control.GetType().FullName}"); 447Control c = _overlayList[index]; 460for (int i = _overlayList.Count - 1; i >= 0; i--) 462Control overlayControl = _overlayList[i]; 477for (int i = _overlayList.Count - 1; i >= 0; i--) 479Control overlayControl = _overlayList[i]; 500foreach (Control c in _overlayList) 511foreach (Control c in _overlayList)