1 type derived from DesignerActionMethodItem
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignerActionVerbItem.cs (1)
6internal class DesignerActionVerbItem : DesignerActionMethodItem
22 instantiations of DesignerActionMethodItem
System.Windows.Forms.Design (22)
System\ComponentModel\Design\DesignerActionList.cs (1)
47items.Add(info.Name, new DesignerActionMethodItem(this, info.Name, dispName, cat, desc));
System\ComponentModel\Design\ToolStripContainerActionList.cs (2)
322items.Add(new DesignerActionMethodItem( 330items.Add(new DesignerActionMethodItem(this, nameof(ReparentControls), SR.DesignerShortcutReparentControls));
System\Windows\Forms\Design\DataGridViewDesigner.cs (2)
810new DesignerActionMethodItem(this, 814new DesignerActionMethodItem(this,
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\MaskedTextBoxDesignerActionList.cs (1)
60DesignerActionItemCollection items = [new DesignerActionMethodItem(this, "SetMask", SR.MaskedTextBoxDesignerVerbsSetMaskDesc)];
System\Windows\Forms\Design\NotifyIconDesignerActionList.cs (1)
25new DesignerActionMethodItem(this,
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\TableLayoutPanelDesigner.cs (5)
401new DesignerActionMethodItem(this, 405new DesignerActionMethodItem(this, 413items.Add(new DesignerActionMethodItem(this, 421items.Add(new DesignerActionMethodItem(this, 427items.Add(new DesignerActionMethodItem(this,
System\Windows\Forms\Design\ToolStripActionList.cs (2)
139items.Add(new DesignerActionMethodItem( 152items.Add(new DesignerActionMethodItem(
System\Windows\Forms\Design\TreeViewActionList.cs (1)
31new DesignerActionMethodItem(
8 references to DesignerActionMethodItem
System.Design (1)
src\winforms\artifacts\obj\System.Design.Facade\Release\net11.0\System.Design.Forwards.cs (1)
19[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.DesignerActionMethodItem))]
System.Windows.Forms.Design (7)
System\ComponentModel\Design\DesignerActionPanel.cs (2)
580else if (item is DesignerActionMethodItem methodItem) 660if (item is DesignerActionMethodItem methodItem)
System\ComponentModel\Design\DesignerActionPanel.MethodLine.cs (4)
15private DesignerActionMethodItem? _methodItem; 117public static StandardLineInfo CreateLineInfo(DesignerActionList list, DesignerActionMethodItem item) => new Info(list, item); 119private sealed class Info(DesignerActionList list, DesignerActionMethodItem item) : StandardLineInfo(list) 121public override DesignerActionMethodItem Item { get; } = item;
System\ComponentModel\Design\MenuCommandService.cs (1)
230if (dai[i] is DesignerActionMethodItem dami && dami.IncludeAsDesignerVerb)