2 types derived from ReadOnlyControlCollection
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStripContainer.ToolStripContainerTypedControlCollection.cs (1)
10internal class ToolStripContainerTypedControlCollection : ReadOnlyControlCollection
System\Windows\Forms\Internal\TypedControlCollection.cs (1)
12internal class TypedControlCollection : ReadOnlyControlCollection
1 instantiation of ReadOnlyControlCollection
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4676return new ReadOnlyControlCollection(this, isReadOnly: !DesignMode);
6 references to ReadOnlyControlCollection
System.Windows.Forms (6)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (2)
274if (Controls is ReadOnlyControlCollection controlCollection) 284if (Controls is ReadOnlyControlCollection controlCollection)
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (4)
689ReadOnlyControlCollection? oldControlCollection 796private static ReadOnlyControlCollection? GetControlCollection(ToolStrip? toolStrip) 797=> (ReadOnlyControlCollection?)toolStrip?.Controls; 804ReadOnlyControlCollection? newControls = GetControlCollection(ParentInternal);