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