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)
29
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
13 references to AssociatedComponents
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ListViewDesigner.cs (1)
39
return base.
AssociatedComponents
;
System.Windows.Forms.Design.Tests (12)
ControlDesignerTests.cs (5)
58
controlDesigner.
AssociatedComponents
.Count.Should().Be(0);
203
_designer.
AssociatedComponents
.Count.Should().Be(0);
207
_designer.
AssociatedComponents
.Count.Should().Be(0);
216
_designer.
AssociatedComponents
.Count.Should().Be(0);
222
_designer.
AssociatedComponents
.Count.Should().Be(1);
ListViewDesignerTests.cs (2)
15
Assert.Empty(listViewDesigner.
AssociatedComponents
);
20
Assert.Equal(2, listViewDesigner.
AssociatedComponents
.Count);
SplitContainerDesignerTests.cs (2)
41
Assert.Empty(splitContainerDesigner.
AssociatedComponents
);
46
Assert.Single(splitContainerDesigner.
AssociatedComponents
);
System\Windows\Forms\Design\ToolStripContainerDesignerTests.cs (1)
63
public void AssociatedComponents_ShouldNotBeNull() => _designer.
AssociatedComponents
.Should().NotBeNull();
ToolStripDesignerTests.cs (2)
42
Assert.Empty(toolStripDesigner.
AssociatedComponents
);
47
Assert.Equal(2, toolStripDesigner.
AssociatedComponents
.Count);