Implemented interface member:
2 overrides of IsReadOnly
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStripItemCollection.cs (1)
288public override bool IsReadOnly { get { return _isReadOnly; } }
System\Windows\Forms\Internal\ReadOnlyControlCollection.cs (1)
60public override bool IsReadOnly => _isReadOnly;
20 references to IsReadOnly
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ControlDesigner.DesignerControlCollection.cs (1)
30public new bool IsReadOnly => _realCollection.IsReadOnly;
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
2168public new bool IsReadOnly => _realCollection.IsReadOnly;
System.Windows.Forms.Design.Tests (2)
System\Windows\Forms\Design\ControlDesigner.DesignerControlCollectionTests.cs (2)
56_collection.IsReadOnly.Should().Be(_control.Controls.IsReadOnly);
System.Windows.Forms.Tests (16)
System\Windows\Forms\ControlTests.ControlCollection.cs (2)
21Assert.False(collection.IsReadOnly); 1358Assert.False(collection.IsReadOnly);
System\Windows\Forms\ControlTests.Methods.cs (1)
615Assert.False(controls.IsReadOnly);
System\Windows\Forms\DataGridView.DataGridViewControlCollectionTests.cs (1)
15Assert.False(collection.IsReadOnly);
System\Windows\Forms\Form.ControlCollectionTests.cs (1)
15Assert.False(collection.IsReadOnly);
System\Windows\Forms\MdiClient.ControlCollectionTests.cs (1)
15Assert.False(collection.IsReadOnly);
System\Windows\Forms\ReadOnlyControlCollectionTests.cs (1)
15Assert.False(collection.IsReadOnly);
System\Windows\Forms\SplitContainer.SplitContainerTypedControlCollectionTests.cs (1)
15Assert.False(collection.IsReadOnly);
System\Windows\Forms\TabControl.ControlCollectionTests.cs (1)
19Assert.False(collection.IsReadOnly);
System\Windows\Forms\TabControlTests.cs (1)
2997Assert.False(controls.IsReadOnly);
System\Windows\Forms\TableLayoutPanelTests.cs (1)
632Assert.False(controls.IsReadOnly);
System\Windows\Forms\TabPageTests.cs (1)
3747Assert.False(controls.IsReadOnly);
System\Windows\Forms\TabPageTests.TabPageControlCollection.cs (1)
14Assert.False(collection.IsReadOnly);
System\Windows\Forms\ToolStripTests.cs (2)
4238Assert.True(controls.IsReadOnly); 4262Assert.False(controls.IsReadOnly);
System\Windows\Forms\TypedControlCollectionTests.cs (1)
15Assert.False(collection.IsReadOnly);