MenuStrip::CreateDefaultItem Method (String^, Image^, EventHandler^)
.NET Framework (current version)
Creates a ToolStripMenuItem with the specified text, image, and event handler on a new MenuStrip.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public protected: virtual ToolStripItem^ CreateDefaultItem( String^ text, Image^ image, EventHandler^ onClick ) override
Parameters
- text
-
Type:
System::String^
The text to use for the ToolStripMenuItem. If the text parameter is a hyphen (-), this method creates a ToolStripSeparator.
- image
-
Type:
System.Drawing::Image^
The Image to display on the ToolStripMenuItem.
- onClick
-
Type:
System::EventHandler^
An event handler that raises the Click event when the ToolStripMenuItem is clicked.
Return Value
Type: System.Windows.Forms::ToolStripItem^A ToolStripMenuItem::ToolStripMenuItem(String^, Image^, EventHandler^), or a ToolStripSeparator if the text parameter is a hyphen (-).
Use the CreateDefaultItem method to add a ToolStripMenuItem with commonly used characteristics to a MenuStrip.
.NET Framework
Available since 2.0
Available since 2.0
Show: