17 overrides of ActionLists
DesignSurface (1)
CustomControls\CustomButtonDesigner.cs (1)
13
public override DesignerActionListCollection
ActionLists
=>
System.Windows.Forms.Design (16)
System\Windows\Forms\Design\ComboBoxDesigner.cs (1)
124
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
183
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\ImageListDesigner.cs (1)
133
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\ListBoxDesigner.cs (1)
191
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\ListViewDesigner.cs (1)
174
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\MaskedTextBoxDesigner.cs (1)
26
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\NotifyIconDesigner.cs (1)
20
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\PictureBoxDesigner.cs (1)
105
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\RichTextBoxDesigner.cs (1)
38
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\SplitContainerDesigner.cs (1)
39
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
292
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\TextBoxDesigner.cs (1)
19
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (1)
93
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
64
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
50
public override DesignerActionListCollection
ActionLists
System\Windows\Forms\Design\TreeViewDesigner.cs (1)
72
public override DesignerActionListCollection
ActionLists
=> _actionLists ??= new DesignerActionListCollection
26 references to ActionLists
System.Windows.Forms.Design (4)
System\ComponentModel\Design\ComponentDesigner.CDDesignerCommandSet.cs (1)
22
ActionListsCommand => _componentDesigner.
ActionLists
,
System\ComponentModel\Design\DesignerActionPanel.cs (1)
624
relatedLists = componentDesigner.
ActionLists
;
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
69
actionLists.AddRange(base.
ActionLists
);
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
55
actionLists.AddRange(base.
ActionLists
);
System.Windows.Forms.Design.Tests (22)
SplitContainerDesignerTests.cs (1)
63
splitContainerDesigner.
ActionLists
.Count.Should().Be(0);
System\ComponentModel\Design\ComponentDesignerTests.cs (4)
19
Assert.Empty(designer.
ActionLists
);
20
Assert.Same(designer.
ActionLists
, designer.
ActionLists
);
2181
Assert.Same(designer.
ActionLists
, set.GetCommands("ActionLists"));
System\Windows\Forms\Design\ComboBoxDesignerTests.cs (1)
51
comboBoxDesigner.
ActionLists
.Count.Should().Be(1);
System\Windows\Forms\Design\ImageListDesignerTests.cs (3)
17
imageListDesigner.
ActionLists
.Should().NotBeNull();
18
imageListDesigner.
ActionLists
.Cast<object>().Should().HaveCount(1);
19
imageListDesigner.
ActionLists
[0].Should().BeOfType<ImageListActionList>();
System\Windows\Forms\Design\ListBoxDesignerTests.cs (1)
126
var actionList = designer.
ActionLists
;
System\Windows\Forms\Design\NotifyIconDesignerTests.cs (1)
27
notifyIconDesigner.
ActionLists
.Count.Should().Be(1);
System\Windows\Forms\Design\PictureBoxDesignerTests.cs (1)
39
pictureBoxDesigner.
ActionLists
.Count.Should().Be(1);
System\Windows\Forms\Design\RadioButtonDesignerTests.cs (1)
15
radioButtonDesigner.
ActionLists
.Count.Should().Be(0);
System\Windows\Forms\Design\RichTextBoxDesignerTests.cs (1)
36
_designer.
ActionLists
.Count.Should().Be(1);
System\Windows\Forms\Design\TextBoxDesignerTests.cs (3)
19
DesignerActionListCollection actionLists = designer.
ActionLists
;
33
DesignerActionListCollection actionLists1 = designer.
ActionLists
;
34
DesignerActionListCollection actionLists2 = designer.
ActionLists
;
System\Windows\Forms\Design\ToolStripContainerDesignerTests.cs (3)
40
public void ActionLists_ShouldNotBeNull() => _designer.
ActionLists
.Should().NotBeNull();
45
var actionLists = _designer.
ActionLists
;
52
var toolStripContainerActionList = _designer.
ActionLists
.OfType<ToolStripContainerActionList>().Single();
System\Windows\Forms\Design\TreeViewDesignerTests.cs (1)
23
treeViewDesigner.
ActionLists
.Count.Should().Be(1);
ToolStripDesignerTests.cs (1)
48
Assert.Equal(2, toolStripDesigner.
ActionLists
.Count);