1 type derived from TableLayoutControlCollection
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
2147internal class DesignerTableLayoutControlCollection : TableLayoutControlCollection, IList
7 instantiations of TableLayoutControlCollection
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
167protected override ControlCollection CreateControlsInstance() => new TableLayoutControlCollection(this);
System.Windows.Forms.Tests (6)
System\Windows\Forms\TableLayoutControlCollectionTests.cs (6)
14TableLayoutControlCollection collection = new(container); 23Assert.Throws<ArgumentNullException>("container", () => new TableLayoutControlCollection(null)); 33TableLayoutControlCollection collection = new(container); 45TableLayoutControlCollection collection = new(container); 57TableLayoutControlCollection collection = new(container); 69TableLayoutControlCollection collection = new(container);
13 references to TableLayoutControlCollection
System.Windows.Forms (3)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (3)
100public new TableLayoutControlCollection Controls => (TableLayoutControlCollection)base.Controls; 171TableLayoutControlCollection collection = Controls;
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\TableLayoutControlCollectionCodeDomSerializer.cs (2)
26TableLayoutControlCollection tableCollection = (TableLayoutControlCollection)originalCollection;
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
2149private readonly TableLayoutControlCollection _realCollection;
System.Windows.Forms.Tests (7)
System\Windows\Forms\TableLayoutControlCollectionTests.cs (5)
14TableLayoutControlCollection collection = new(container); 33TableLayoutControlCollection collection = new(container); 45TableLayoutControlCollection collection = new(container); 57TableLayoutControlCollection collection = new(container); 69TableLayoutControlCollection collection = new(container);
System\Windows\Forms\TableLayoutPanelTests.cs (2)
631TableLayoutControlCollection controls = Assert.IsType<TableLayoutControlCollection>(control.CreateControlsInstance());