StatusStrip::CreateDefaultItem Method (String^, Image^, EventHandler^)
.NET Framework (current version)
Creates a default ToolStripStatusLabel with the specified text, image, and event handler on a new StatusStrip instance.
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 ToolStripStatusLabel. If the text parameter is a hyphen (-), this method creates a ToolStripSeparator.
- image
-
Type:
System.Drawing::Image^
The Image to display on the ToolStripStatusLabel.
- onClick
-
Type:
System::EventHandler^
An event handler that raises the Click event when the ToolStripStatusLabel is clicked.
Return Value
Type: System.Windows.Forms::ToolStripItem^A ToolStripStatusLabel::ToolStripStatusLabel(String^, Image^, EventHandler^), or a ToolStripSeparator if the text parameter is a hyphen (-).
Use the CreateDefaultItem method to add a ToolStripStatusLabel with commonly used characteristics to a StatusStrip.
.NET Framework
Available since 2.0
Available since 2.0
Show: