ToolStripStatusLabel 构造函数

定义

初始化 ToolStripStatusLabel 类的新实例。

重载

ToolStripStatusLabel()

初始化 ToolStripStatusLabel 类的新实例。

ToolStripStatusLabel(Image)

初始化 ToolStripStatusLabel 类的新实例,使之显示指定的图像。

ToolStripStatusLabel(String)

初始化 ToolStripStatusLabel 类的新实例,使之显示指定的文本。

ToolStripStatusLabel(String, Image)

初始化 ToolStripStatusLabel 类的新实例,使之显示指定的图像和文本。

ToolStripStatusLabel(String, Image, EventHandler)

初始化 ToolStripStatusLabel 类的新实例,该类显示指定的图像和文本并在用户单击 ToolStripStatusLabel 时执行指定的操作。

ToolStripStatusLabel(String, Image, EventHandler, String)

用指定名称初始化 ToolStripStatusLabel 类的新实例,该类显示指定的图像和文本并在用户单击 ToolStripStatusLabel 时执行指定的操作。

ToolStripStatusLabel()

初始化 ToolStripStatusLabel 类的新实例。

public:
 ToolStripStatusLabel();
public ToolStripStatusLabel ();
Public Sub New ()

适用于

ToolStripStatusLabel(Image)

初始化 ToolStripStatusLabel 类的新实例,使之显示指定的图像。

public:
 ToolStripStatusLabel(System::Drawing::Image ^ image);
public ToolStripStatusLabel (System.Drawing.Image image);
new System.Windows.Forms.ToolStripStatusLabel : System.Drawing.Image -> System.Windows.Forms.ToolStripStatusLabel
Public Sub New (image As Image)

参数

image
Image

显示在 Image 上的 ToolStripStatusLabel

适用于

ToolStripStatusLabel(String)

初始化 ToolStripStatusLabel 类的新实例,使之显示指定的文本。

public:
 ToolStripStatusLabel(System::String ^ text);
public ToolStripStatusLabel (string text);
new System.Windows.Forms.ToolStripStatusLabel : string -> System.Windows.Forms.ToolStripStatusLabel
Public Sub New (text As String)

参数

text
String

String,表示显示在 ToolStripStatusLabel 上的文本。

适用于

ToolStripStatusLabel(String, Image)

初始化 ToolStripStatusLabel 类的新实例,使之显示指定的图像和文本。

public:
 ToolStripStatusLabel(System::String ^ text, System::Drawing::Image ^ image);
public ToolStripStatusLabel (string text, System.Drawing.Image image);
new System.Windows.Forms.ToolStripStatusLabel : string * System.Drawing.Image -> System.Windows.Forms.ToolStripStatusLabel
Public Sub New (text As String, image As Image)

参数

text
String

String,表示显示在 ToolStripStatusLabel 上的文本。

image
Image

显示在 Image 上的 ToolStripStatusLabel

适用于

ToolStripStatusLabel(String, Image, EventHandler)

初始化 ToolStripStatusLabel 类的新实例,该类显示指定的图像和文本并在用户单击 ToolStripStatusLabel 时执行指定的操作。

public:
 ToolStripStatusLabel(System::String ^ text, System::Drawing::Image ^ image, EventHandler ^ onClick);
public ToolStripStatusLabel (string text, System.Drawing.Image image, EventHandler onClick);
new System.Windows.Forms.ToolStripStatusLabel : string * System.Drawing.Image * EventHandler -> System.Windows.Forms.ToolStripStatusLabel
Public Sub New (text As String, image As Image, onClick As EventHandler)

参数

text
String

String,表示显示在 ToolStripStatusLabel 上的文本。

image
Image

显示在 Image 上的 ToolStripStatusLabel

onClick
EventHandler

指定单击控件时要执行的操作。

适用于

ToolStripStatusLabel(String, Image, EventHandler, String)

用指定名称初始化 ToolStripStatusLabel 类的新实例,该类显示指定的图像和文本并在用户单击 ToolStripStatusLabel 时执行指定的操作。

public:
 ToolStripStatusLabel(System::String ^ text, System::Drawing::Image ^ image, EventHandler ^ onClick, System::String ^ name);
public ToolStripStatusLabel (string text, System.Drawing.Image image, EventHandler onClick, string name);
new System.Windows.Forms.ToolStripStatusLabel : string * System.Drawing.Image * EventHandler * string -> System.Windows.Forms.ToolStripStatusLabel
Public Sub New (text As String, image As Image, onClick As EventHandler, name As String)

参数

text
String

String,表示显示在 ToolStripStatusLabel 上的文本。

image
Image

显示在 Image 上的 ToolStripStatusLabel

onClick
EventHandler

指定单击控件时要执行的操作。

name
String

ToolStripStatusLabel 的名称。

适用于