17 overrides of ActionLists
DesignSurface (1)
CustomControls\CustomButtonDesigner.cs (1)
10public override DesignerActionListCollection ActionLists =>
System.Windows.Forms.Design (16)
System\Windows\Forms\Design\ComboBoxDesigner.cs (1)
122public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\DataGridViewDesigner.cs (1)
182public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\ImageListDesigner.cs (1)
133public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\ListBoxDesigner.cs (1)
191public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\ListViewDesigner.cs (1)
172public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\MaskedTextBoxDesigner.cs (1)
26public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\NotifyIconDesigner.cs (1)
20public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\PictureBoxDesigner.cs (1)
105public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\RichTextBoxDesigner.cs (1)
38public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\SplitContainerDesigner.cs (1)
39public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
292public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\TextBoxDesigner.cs (1)
19public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\ToolStripContainerDesigner.cs (1)
93public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
65public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
50public override DesignerActionListCollection ActionLists
System\Windows\Forms\Design\TreeViewDesigner.cs (1)
72public override DesignerActionListCollection ActionLists => _actionLists ??= new DesignerActionListCollection
9 references to ActionLists
System.Windows.Forms.Design (4)
System\ComponentModel\Design\ComponentDesigner.CDDesignerCommandSet.cs (1)
22ActionListsCommand => _componentDesigner.ActionLists,
System\ComponentModel\Design\DesignerActionPanel.cs (1)
624relatedLists = componentDesigner.ActionLists;
System\Windows\Forms\Design\ToolStripDesigner.cs (1)
70actionLists.AddRange(base.ActionLists);
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
55actionLists.AddRange(base.ActionLists);
System.Windows.Forms.Design.Tests (5)
System\ComponentModel\Design\ComponentDesignerTests.cs (4)
21Assert.Empty(designer.ActionLists); 22Assert.Same(designer.ActionLists, designer.ActionLists); 2183Assert.Same(designer.ActionLists, set.GetCommands("ActionLists"));
System\Windows\Forms\Design\RadioButtonDesignerTests.cs (1)
17radioButtonDesigner.ActionLists.Count.Should().Be(0);