3 instantiations of DesignerControlCollection
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ControlDesigner.cs (1)
78private DesignerControlCollection Controls => _controls ??= new DesignerControlCollection(Control);
System.Windows.Forms.Design.Tests (2)
System\Windows\Forms\Design\ControlDesigner.DesignerControlCollectionTests.cs (2)
17_collection = new(_control); 29Action action = () => new ControlDesigner.DesignerControlCollection(null!);
4 references to DesignerControlCollection
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ControlDesigner.cs (3)
66private DesignerControlCollection? _controls; 78private DesignerControlCollection Controls => _controls ??= new DesignerControlCollection(Control); 1661typeof(DesignerControlCollection),
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\ControlDesigner.DesignerControlCollectionTests.cs (1)
12private readonly ControlDesigner.DesignerControlCollection _collection;