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