56 references to new
DesignSurface (1)
CustomControls\CustomButtonDesignerActionList.cs (1)
13: 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) 866public DataGridViewColumnEditingActionList(DataGridViewDesigner owner) : base(owner.Component) 897public 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)
20yield return new object[] { new DesignerActionList[] { new(null), null } }; 42DesignerActionList value1 = new(null); 49DesignerActionList value2 = new(null); 100DesignerActionList value1 = new(null); 107DesignerActionList value2 = new(null); 123DesignerActionList value = new(null); 143DesignerActionList value1 = new(null); 144DesignerActionList value2 = new(null); 169DesignerActionList value = new(null); 181DesignerActionList value = new(null); 184Assert.False(collection.Contains(new DesignerActionList(null))); 192DesignerActionList value = new(null); 195Assert.Equal(-1, collection.IndexOf(new DesignerActionList(null))); 203DesignerActionList value = new(null);
System\ComponentModel\Design\DesignerActionListTests.cs (5)
23DesignerActionList list = new(component); 32DesignerActionList list = new(new Component()) 63DesignerActionList list = new(component); 126DesignerActionList list = new(null); 133public SubDesignerActionList() : base(null)
System\ComponentModel\Design\DesignerActionMethodItemTests.cs (13)
15yield return new object[] { new DesignerActionList(null), "memberName", "displayName", "category", "description", false, "displayName" }; 16yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", "cate(&a)gory", "description", true, "displayName" }; 41yield return new object[] { new DesignerActionList(null), "memberName", "displayName", "category", "description", "displayName" }; 42yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", "cate(&a)gory", "description", "displayName" }; 67yield return new object[] { new DesignerActionList(null), "memberName", "displayName", "category", false, "displayName" }; 68yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", "cate(&a)gory", true, "displayName" }; 93yield return new object[] { new DesignerActionList(null), "memberName", "displayName", "category", "displayName" }; 94yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", "cate(&a)gory", "displayName" }; 119yield return new object[] { new DesignerActionList(null), "memberName", "displayName", false, "displayName" }; 120yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", true, "displayName" }; 145yield return new object[] { new DesignerActionList(null), "memberName", "displayName", "displayName" }; 146yield return new object[] { new DesignerActionList(null), "member(&a)Name", "displa(&a)yName", "displayName" }; 235public SubDesignerActionList() : base(null)
System\ComponentModel\Design\DesignerActionServiceTests.cs (4)
48yield return new object[] { new DesignerActionList(null), new DesignerActionListCollection() }; 444DesignerActionListCollection actionLists = new() { null, new DesignerActionList(null), new NullCustomDesignerActionList(null), actionList }; 1064public CustomDesignerActionList(IComponent component) : base(component) 1075public NullCustomDesignerActionList(IComponent component) : base(component)