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