16 references to DesignerActionMethodItem
System.Windows.Forms.Design (15)
System\ComponentModel\Design\DesignerActionMethodItem.cs (5)
23public DesignerActionMethodItem(DesignerActionList actionList, string memberName, string displayName) : this(actionList, memberName, displayName, null, null, false) 27public DesignerActionMethodItem(DesignerActionList actionList, string memberName, string displayName, bool includeAsDesignerVerb) : this(actionList, memberName, displayName, null, null, includeAsDesignerVerb) 31public DesignerActionMethodItem(DesignerActionList actionList, string memberName, string displayName, string category) : this(actionList, memberName, displayName, category, null, false) 35public DesignerActionMethodItem(DesignerActionList actionList, string memberName, string displayName, string category, bool includeAsDesignerVerb) : this(actionList, memberName, displayName, category, null, includeAsDesignerVerb) 39public 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)
52new DesignerActionMethodItem(this, nameof(ChooseImages), SR.ImageListActionList_ChooseImagesDisplayName, SR.LinksCategoryName, SR.ImageListActionList_ChooseImagesDescription, true)
System\Windows\Forms\Design\ListControlUnboundActionList.cs (1)
27new DesignerActionMethodItem(this, "InvokeItemsDialog",
System\Windows\Forms\Design\ListViewActionList.cs (3)
76new DesignerActionMethodItem(this, "InvokeItemsDialog", 80new DesignerActionMethodItem(this, "InvokeColumnsDialog", 84new DesignerActionMethodItem(this, "InvokeGroupsDialog",
System\Windows\Forms\Design\PictureBoxActionList.cs (1)
42new DesignerActionMethodItem(this, "ChooseImage", SR.ChooseImageDisplayName, SR.PropertiesCategoryName, SR.ChooseImageDescription, true),
System\Windows\Forms\Design\RichTextBoxActionList.cs (1)
27new DesignerActionMethodItem(this, "EditLines", SR.EditLinesDisplayName, SR.LinksCategoryName, SR.EditLinesDescription, true),
System\Windows\Forms\Design\ToolStripActionList.cs (2)
139items.Add(new DesignerActionMethodItem(this, "InvokeEmbedVerb", SR.ToolStripDesignerEmbedVerb, "", SR.ToolStripDesignerEmbedVerbDesc, true)); 146items.Add(new DesignerActionMethodItem(this, "InvokeInsertStandardItemsVerb", SR.ToolStripDesignerStandardItemsVerb, "", SR.ToolStripDesignerStandardItemsVerbDesc, true));
System\Windows\Forms\Design\TreeViewActionList.cs (1)
42new DesignerActionMethodItem(this, "InvokeNodesDialog", SR.InvokeNodesDialogDisplayName, SR.PropertiesCategoryName, SR.InvokeNodesDialogDescription, true),
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\DesignerActionMethodItemTests.cs (1)
23DesignerActionMethodItem item = new(actionList, memberName, displayName, category, description, includeAsDesignerVerb);