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)
183public 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)
64public 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
31 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)
69actionLists.AddRange(base.ActionLists);
System\Windows\Forms\Design\ToolStripDropDownDesigner.cs (1)
55actionLists.AddRange(base.ActionLists);
System.Windows.Forms.Design.Tests (27)
SplitContainerDesignerTests.cs (1)
65splitContainerDesigner.ActionLists.Count.Should().Be(0);
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\ComboBoxDesignerTests.cs (1)
53comboBoxDesigner.ActionLists.Count.Should().Be(1);
System\Windows\Forms\Design\DataGridViewDesignerTests.cs (2)
136DesignerActionListCollection actionLists1 = _designer.ActionLists; 137DesignerActionListCollection actionLists2 = _designer.ActionLists;
System\Windows\Forms\Design\ImageListDesignerTests.cs (3)
15imageListDesigner.ActionLists.Should().NotBeNull(); 16imageListDesigner.ActionLists.Cast<object>().Should().HaveCount(1); 17imageListDesigner.ActionLists[0].Should().BeOfType<ImageListActionList>();
System\Windows\Forms\Design\ListBoxDesignerTests.cs (1)
124var actionList = designer.ActionLists;
System\Windows\Forms\Design\MaskedTextBoxDesignerTests.cs (2)
110DesignerActionListCollection actionLists = _maskedTextBoxDesigner.ActionLists; 133DesignerActionListCollection actionLists = _maskedTextBoxDesigner.ActionLists;
System\Windows\Forms\Design\NotifyIconDesignerTests.cs (1)
25notifyIconDesigner.ActionLists.Count.Should().Be(1);
System\Windows\Forms\Design\PictureBoxDesignerTests.cs (1)
41pictureBoxDesigner.ActionLists.Count.Should().Be(1);
System\Windows\Forms\Design\RadioButtonDesignerTests.cs (1)
17radioButtonDesigner.ActionLists.Count.Should().Be(0);
System\Windows\Forms\Design\RichTextBoxDesignerTests.cs (1)
34_designer.ActionLists.Count.Should().Be(1);
System\Windows\Forms\Design\TableLayoutPanelDesignerTests.cs (1)
106DesignerActionListCollection actionLists = _designer.ActionLists;
System\Windows\Forms\Design\TextBoxDesignerTests.cs (3)
17DesignerActionListCollection actionLists = designer.ActionLists; 31DesignerActionListCollection actionLists1 = designer.ActionLists; 32DesignerActionListCollection actionLists2 = designer.ActionLists;
System\Windows\Forms\Design\ToolStripContainerDesignerTests.cs (3)
38public void ActionLists_ShouldNotBeNull() => _designer.ActionLists.Should().NotBeNull(); 43var actionLists = _designer.ActionLists; 50var toolStripContainerActionList = _designer.ActionLists.OfType<ToolStripContainerActionList>().Single();
System\Windows\Forms\Design\TreeViewDesignerTests.cs (1)
25treeViewDesigner.ActionLists.Count.Should().Be(1);
ToolStripDesignerTests.cs (1)
50Assert.Equal(2, toolStripDesigner.ActionLists.Count);