4 types derived from TypedControlCollection
System.Windows.Forms (4)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.ToolStripPanelControlCollection.cs (1)
10internal partial class ToolStripPanelControlCollection : TypedControlCollection
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.ToolStripPanelControlCollection.XYComparer.cs (1)
10internal partial class ToolStripPanelControlCollection : TypedControlCollection
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.ToolStripPanelControlCollection.YXComparer.cs (1)
10internal partial class ToolStripPanelControlCollection : TypedControlCollection
System\Windows\Forms\Layout\Containers\SplitContainer.SplitContainerTypedControlCollection.cs (1)
12internal class SplitContainerTypedControlCollection : TypedControlCollection
2 instantiations of TypedControlCollection
System.Windows.Forms.Tests (2)
System\Windows\Forms\TypedControlCollectionTests.cs (2)
14TypedControlCollection collection = new(owner, typeof(Panel), false); 24Assert.Throws<ArgumentNullException>("owner", () => new TypedControlCollection(null, typeof(Panel), false));
3 references to TypedControlCollection
System.Windows.Forms (2)
System\Windows\Forms\Layout\Containers\SplitContainer.cs (2)
105((TypedControlCollection)Controls).AddInternal(Panel1); 106((TypedControlCollection)Controls).AddInternal(Panel2);
System.Windows.Forms.Tests (1)
System\Windows\Forms\TypedControlCollectionTests.cs (1)
14TypedControlCollection collection = new(owner, typeof(Panel), false);