4 instantiations of TabPageControlCollection
System.Windows.Forms (1)
System\Windows\Forms\Controls\TabControl\TabPage.cs (1)
144
protected override ControlCollection CreateControlsInstance() => new
TabPageControlCollection
(this);
System.Windows.Forms.Tests (3)
System\Windows\Forms\TabPageTests.TabPageControlCollection.cs (3)
14
var collection = new TabPage.
TabPageControlCollection
(owner);
23
Assert.Throws<ArgumentNullException>("owner", () => new TabPage.
TabPageControlCollection
(null));
108
var collection = new TabPage.
TabPageControlCollection
(owner);
7 references to TabPageControlCollection
System.Windows.Forms.Tests (7)
System\Windows\Forms\TabPageTests.cs (3)
56
Assert.IsType<TabPage.
TabPageControlCollection
>(control.Controls);
165
Assert.IsType<TabPage.
TabPageControlCollection
>(control.Controls);
3746
Control.ControlCollection controls = Assert.IsType<TabPage.
TabPageControlCollection
>(control.CreateControlsInstance());
System\Windows\Forms\TabPageTests.TabPageControlCollection.cs (4)
14
var
collection = new TabPage.TabPageControlCollection(owner);
32
TabPage.
TabPageControlCollection
collection = Assert.IsType<TabPage.
TabPageControlCollection
>(owner.Controls);
108
var
collection = new TabPage.TabPageControlCollection(owner);