Base:
property
AssociatedComponents
System.ComponentModel.Design.ComponentDesigner.AssociatedComponents
5 overrides of AssociatedComponents
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
32
public override ICollection
AssociatedComponents
=> Control.Columns;
System\Windows\Forms\Design\ListViewDesigner.cs (1)
27
public override ICollection
AssociatedComponents
System\Windows\Forms\Design\SplitContainerDesigner.cs (1)
141
public override ICollection
AssociatedComponents
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (1)
146
public override ICollection
AssociatedComponents
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
142
public override ICollection
AssociatedComponents
14 references to AssociatedComponents
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ListViewDesigner.cs (1)
37
return base.
AssociatedComponents
;
System.Windows.Forms.Design.Tests (13)
ControlDesignerTests.cs (5)
56
controlDesigner.
AssociatedComponents
.Count.Should().Be(0);
201
_designer.
AssociatedComponents
.Count.Should().Be(0);
205
_designer.
AssociatedComponents
.Count.Should().Be(0);
214
_designer.
AssociatedComponents
.Count.Should().Be(0);
220
_designer.
AssociatedComponents
.Count.Should().Be(1);
ListViewDesignerTests.cs (2)
17
Assert.Empty(listViewDesigner.
AssociatedComponents
);
22
Assert.Equal(2, listViewDesigner.
AssociatedComponents
.Count);
SplitContainerDesignerTests.cs (2)
43
Assert.Empty(splitContainerDesigner.
AssociatedComponents
);
48
Assert.Single(splitContainerDesigner.
AssociatedComponents
);
System\Windows\Forms\Design\DataGridViewDesignerTests.cs (1)
41
_designer.
AssociatedComponents
.Should().BeSameAs(_dataGridView.Columns);
System\Windows\Forms\Design\ToolStripContainerDesignerTests.cs (1)
61
public void AssociatedComponents_ShouldNotBeNull() => _designer.
AssociatedComponents
.Should().NotBeNull();
ToolStripDesignerTests.cs (2)
44
Assert.Empty(toolStripDesigner.
AssociatedComponents
);
49
Assert.Equal(2, toolStripDesigner.
AssociatedComponents
.Count);