Constructor ToolStripMenuItem
ToolStripMenuItem()
Initializes a new instance of the MenuItem class.
public ToolStripMenuItem()
ToolStripMenuItem(string, Image, EventHandler)
Initializes a new instance of the MenuItem class that displays the specified text and image and that does the specified action when the MenuItem is clicked.
public ToolStripMenuItem(string text, Image image, EventHandler onClick)
Parameters
text
stringThe text to display on the menu item.
image
ImageThe Image to display on the control.
onClick
EventHandlerAn event handler that raises the Click event when the control is clicked.
ToolStripMenuItem(string, KeyGesture)
Initializes a new instance of the MenuItem class with
the specified text
and shortcut
for the menu item.
public ToolStripMenuItem(string text, KeyGesture shortcut)
Parameters
text
stringshortcut
KeyGesture
ToolStripMenuItem(string)
Initializes a new instance of the MenuItem class with
the specified text
for the menu item.
public ToolStripMenuItem(string text)
Parameters
text
string
ToolStripMenuItem(string, EventHandler?, KeyGesture?)
Initializes a new instance of the MenuItem class with
the specified text
, onClick
and
shortcut
for the menu item.
public ToolStripMenuItem(string text, EventHandler? onClick = null, KeyGesture? shortcut = null)
Parameters
text
stringonClick
EventHandlershortcut
KeyGesture
ToolStripMenuItem(string, Action?)
Initializes a new instance of the MenuItem class with
the specified text
and onClick
for the menu item.
public ToolStripMenuItem(string text, Action? onClick)
Parameters
ToolStripMenuItem(string, Action?, KeyGesture?)
Initializes a new instance of the MenuItem class with
the specified text
, onClick
and
shortcut
for the menu item.
public ToolStripMenuItem(string text, Action? onClick, KeyGesture? shortcut)
Parameters
text
stringonClick
Actionshortcut
KeyGesture