16 references to DesignerActionMethodItem
System.Windows.Forms.Design (15)
System\ComponentModel\Design\DesignerActionMethodItem.cs (5)
23
public DesignerActionMethodItem(DesignerActionList actionList, string memberName, string displayName) :
this
(actionList, memberName, displayName, null, null, false)
27
public DesignerActionMethodItem(DesignerActionList actionList, string memberName, string displayName, bool includeAsDesignerVerb) :
this
(actionList, memberName, displayName, null, null, includeAsDesignerVerb)
31
public DesignerActionMethodItem(DesignerActionList actionList, string memberName, string displayName, string category) :
this
(actionList, memberName, displayName, category, null, false)
35
public DesignerActionMethodItem(DesignerActionList actionList, string memberName, string displayName, string category, bool includeAsDesignerVerb) :
this
(actionList, memberName, displayName, category, null, includeAsDesignerVerb)
39
public DesignerActionMethodItem(DesignerActionList actionList, string memberName, string displayName, string category, string description) :
this
(actionList, memberName, displayName, category, description, false)
System\Windows\Forms\Design\ImageListActionList.cs (1)
52
new
DesignerActionMethodItem
(this, nameof(ChooseImages), SR.ImageListActionList_ChooseImagesDisplayName, SR.LinksCategoryName, SR.ImageListActionList_ChooseImagesDescription, true)
System\Windows\Forms\Design\ListControlUnboundActionList.cs (1)
27
new
DesignerActionMethodItem
(this, "InvokeItemsDialog",
System\Windows\Forms\Design\ListViewActionList.cs (3)
50
new
DesignerActionMethodItem
(this, nameof(InvokeItemsDialog),
54
new
DesignerActionMethodItem
(this, nameof(InvokeColumnsDialog),
58
new
DesignerActionMethodItem
(this, nameof(InvokeGroupsDialog),
System\Windows\Forms\Design\PictureBoxActionList.cs (1)
31
new
DesignerActionMethodItem
(
System\Windows\Forms\Design\RichTextBoxActionList.cs (1)
27
new
DesignerActionMethodItem
(this, "EditLines", SR.EditLinesDisplayName, SR.LinksCategoryName, SR.EditLinesDescription, true),
System\Windows\Forms\Design\ToolStripActionList.cs (2)
139
items.Add(new
DesignerActionMethodItem
(
152
items.Add(new
DesignerActionMethodItem
(
System\Windows\Forms\Design\TreeViewActionList.cs (1)
31
new
DesignerActionMethodItem
(
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\DesignerActionMethodItemTests.cs (1)
23
DesignerActionMethodItem item =
new
(actionList, memberName, displayName, category, description, includeAsDesignerVerb);