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)
12TableLayoutControlCollection collection = new(container); 21Assert.Throws<ArgumentNullException>("container", () => new TableLayoutControlCollection(null)); 31TableLayoutControlCollection collection = new(container); 43TableLayoutControlCollection collection = new(container); 55TableLayoutControlCollection collection = new(container); 67TableLayoutControlCollection 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)
12TableLayoutControlCollection collection = new(container); 31TableLayoutControlCollection collection = new(container); 43TableLayoutControlCollection collection = new(container); 55TableLayoutControlCollection collection = new(container); 67TableLayoutControlCollection collection = new(container);
System\Windows\Forms\TableLayoutPanelTests.cs (2)
629TableLayoutControlCollection controls = Assert.IsType<TableLayoutControlCollection>(control.CreateControlsInstance());