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