8 references to TableLayoutControlCollection
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
167protected override ControlCollection CreateControlsInstance() => new TableLayoutControlCollection(this);
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
2151public DesignerTableLayoutControlCollection(TableLayoutPanel owner) : base(owner) => _realCollection = owner.Controls;
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);