56 references to new
DesignSurface (1)
CustomControls\CustomButtonDesignerActionList.cs (1)
14: base(component)
System.Windows.Forms.Design (19)
System\ComponentModel\Design\ToolStripContainerActionList.cs (1)
22public ToolStripContainerActionList(ToolStripContainer toolStripContainer) : base(toolStripContainer)
System\Windows\Forms\Design\ContextMenuStripActionList.cs (1)
15: base(designer.Component)
System\Windows\Forms\Design\ControlDesigner.DockingActionList.cs (1)
16: base(owner.Component)
System\Windows\Forms\Design\DataGridViewDesigner.cs (3)
813public DataGridViewChooseDataSourceActionList(DataGridViewDesigner owner) : base(owner.Component) 867public DataGridViewColumnEditingActionList(DataGridViewDesigner owner) : base(owner.Component) 898public DataGridViewPropertiesActionList(DataGridViewDesigner owner) : base(owner.Component)
System\Windows\Forms\Design\DesignerActionVerbList.cs (1)
11: base(null)
System\Windows\Forms\Design\ImageListActionList.cs (1)
15: base(designer.Component)
System\Windows\Forms\Design\ListControlUnboundActionList.cs (1)
13: base(designer.Component)
System\Windows\Forms\Design\ListViewActionList.cs (1)
15: base(designer.Component)
System\Windows\Forms\Design\MaskedTextBoxDesignerActionList.cs (1)
26: base(designer.Component)
System\Windows\Forms\Design\NotifyIconDesignerActionList.cs (1)
11public NotifyIconActionList(NotifyIconDesigner designer) : base(designer.Component)
System\Windows\Forms\Design\PictureBoxActionList.cs (1)
15: base(designer.Component)
System\Windows\Forms\Design\RichTextBoxActionList.cs (1)
13: base(designer.Component)
System\Windows\Forms\Design\SplitContainerDesigner.OrientationActionList.cs (1)
21: base(owner.Component)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
389public TableLayouPanelRowColumnActionList(TableLayoutPanelDesigner owner) : base(owner.Component)
System\Windows\Forms\Design\TextBoxActionList.cs (1)
14: base(designer.Component)
System\Windows\Forms\Design\ToolStripActionList.cs (1)
18: base(designer.Component)
System\Windows\Forms\Design\TreeViewActionList.cs (1)
15: base(designer.Component)
System.Windows.Forms.Design.Tests (36)
System\ComponentModel\Design\DesignerActionListCollectionTests.cs (14)
18yield return new object[] { new DesignerActionList[] { new(null), null } }; 40DesignerActionList value1 = new(null); 47DesignerActionList value2 = new(null); 98DesignerActionList value1 = new(null); 105DesignerActionList value2 = new(null); 121DesignerActionList value = new(null); 141DesignerActionList value1 = new(null); 142DesignerActionList value2 = new(null); 167DesignerActionList value = new(null); 179DesignerActionList value = new(null); 182Assert.False(collection.Contains(new DesignerActionList(null))); 190DesignerActionList value = new(null); 193Assert.Equal(-1, collection.IndexOf(new DesignerActionList(null))); 201DesignerActionList value = new(null);
System\ComponentModel\Design\DesignerActionListTests.cs (5)
21DesignerActionList list = new(component); 30DesignerActionList list = new(new Component()) 61DesignerActionList list = new(component); 124DesignerActionList list = new(null); 131public SubDesignerActionList() : base(null)
System\ComponentModel\Design\DesignerActionMethodItemTests.cs (13)
13yield return new object[] { new DesignerActionList(null), "memberName", "displayName", "category", "description", false, "displayName" }; 14yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", "cate(&a)gory", "description", true, "displayName" }; 39yield return new object[] { new DesignerActionList(null), "memberName", "displayName", "category", "description", "displayName" }; 40yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", "cate(&a)gory", "description", "displayName" }; 65yield return new object[] { new DesignerActionList(null), "memberName", "displayName", "category", false, "displayName" }; 66yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", "cate(&a)gory", true, "displayName" }; 91yield return new object[] { new DesignerActionList(null), "memberName", "displayName", "category", "displayName" }; 92yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", "cate(&a)gory", "displayName" }; 117yield return new object[] { new DesignerActionList(null), "memberName", "displayName", false, "displayName" }; 118yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", true, "displayName" }; 143yield return new object[] { new DesignerActionList(null), "memberName", "displayName", "displayName" }; 144yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", "displayName" }; 240public SubDesignerActionList() : base(null)
System\ComponentModel\Design\DesignerActionServiceTests.cs (4)
46yield return new object[] { new DesignerActionList(null), new DesignerActionListCollection() }; 442DesignerActionListCollection actionLists = new() { null, new DesignerActionList(null), new NullCustomDesignerActionList(null), actionList }; 1062public CustomDesignerActionList(IComponent component) : base(component) 1073public NullCustomDesignerActionList(IComponent component) : base(component)