StatusStrip::CreateDefaultItem Method (String^, Image^, EventHandler^)

 

Creates a default ToolStripStatusLabel with the specified text, image, and event handler on a new StatusStrip instance.

Namespace:   System.Windows.Forms
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.

Use the CreateDefaultItem method to add a ToolStripStatusLabel with commonly used characteristics to a StatusStrip.

.NET Framework
Available since 2.0
Return to top
Show: