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)
50new DesignerActionMethodItem(this, nameof(InvokeItemsDialog), 54new DesignerActionMethodItem(this, nameof(InvokeColumnsDialog), 58new DesignerActionMethodItem(this, nameof(InvokeGroupsDialog),
System\Windows\Forms\Design\PictureBoxActionList.cs (1)
31new DesignerActionMethodItem(
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( 152items.Add(new DesignerActionMethodItem(
System\Windows\Forms\Design\TreeViewActionList.cs (1)
31new DesignerActionMethodItem(
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\DesignerActionMethodItemTests.cs (1)
23DesignerActionMethodItem item = new(actionList, memberName, displayName, category, description, includeAsDesignerVerb);