2 types derived from ReadOnlyControlCollection
System.Windows.Forms (2)
winforms\Managed\System\WinForms\ToolStripContainer.cs (1)
445internal class ToolStripContainerTypedControlCollection : WindowsFormsUtils.ReadOnlyControlCollection {
winforms\Managed\System\WinForms\WinFormsUtils.cs (1)
535internal class TypedControlCollection : ReadOnlyControlCollection {
1 instantiation of ReadOnlyControlCollection
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ToolStrip.cs (1)
4799return new WindowsFormsUtils.ReadOnlyControlCollection(this, /* isReadOnly = */ !DesignMode);
9 references to ReadOnlyControlCollection
System.Windows.Forms (9)
winforms\Managed\System\WinForms\StatusStrip.cs (4)
283WindowsFormsUtils.ReadOnlyControlCollection controlCollection = this.Controls as WindowsFormsUtils.ReadOnlyControlCollection; 292WindowsFormsUtils.ReadOnlyControlCollection controlCollection = this.Controls as WindowsFormsUtils.ReadOnlyControlCollection;
winforms\Managed\System\WinForms\ToolStripControlHost.cs (5)
850WindowsFormsUtils.ReadOnlyControlCollection oldControlCollection 972private static WindowsFormsUtils.ReadOnlyControlCollection GetControlCollection(ToolStrip toolStrip) { 973WindowsFormsUtils.ReadOnlyControlCollection newControls = 974toolStrip != null ? (WindowsFormsUtils.ReadOnlyControlCollection) toolStrip.Controls : null; 980WindowsFormsUtils.ReadOnlyControlCollection newControls = GetControlCollection(ParentInternal);