ToolStripLabel 构造函数

定义

初始化 ToolStripLabel 类的新实例。

重载

ToolStripLabel()

初始化 ToolStripLabel 类的新实例。

ToolStripLabel(Image)

初始化 ToolStripLabel 类的新实例,并指定要显示的图像。

ToolStripLabel(String)

初始化 ToolStripLabel 类的新实例,并指定要显示的文本。

ToolStripLabel(String, Image)

初始化 ToolStripLabel 类的新实例,并指定要显示的文本和图像。

ToolStripLabel(String, Image, Boolean)

初始化 ToolStripLabel 类的新实例,并指定要显示的文本和图像以及 ToolStripLabel 是否作为链接。

ToolStripLabel(String, Image, Boolean, EventHandler)

初始化 ToolStripLabel 类的新实例,指定要显示的文本和图像,ToolStripLabel 是否作为链接,并提供 Click 事件处理程序。

ToolStripLabel(String, Image, Boolean, EventHandler, String)

初始化 ToolStripLabel 类的新实例,指定要显示的文本和图像,ToolStripLabel 是否作为链接,并提供 Click 事件处理程序和 ToolStripLabel 的名称。

ToolStripLabel()

初始化 ToolStripLabel 类的新实例。

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

适用于

ToolStripLabel(Image)

初始化 ToolStripLabel 类的新实例,并指定要显示的图像。

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

参数

image
Image

要在 ToolStripLabel 上显示的 Image

适用于

ToolStripLabel(String)

初始化 ToolStripLabel 类的新实例,并指定要显示的文本。

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

参数

text
String

要在 ToolStripLabel 上显示的文本。

适用于

ToolStripLabel(String, Image)

初始化 ToolStripLabel 类的新实例,并指定要显示的文本和图像。

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

参数

text
String

要在 ToolStripLabel 上显示的文本。

image
Image

要在 ToolStripLabel 上显示的 Image

适用于

ToolStripLabel(String, Image, Boolean)

初始化 ToolStripLabel 类的新实例,并指定要显示的文本和图像以及 ToolStripLabel 是否作为链接。

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

参数

text
String

要在 ToolStripLabel 上显示的文本。

image
Image

要在 ToolStripLabel 上显示的 Image

isLink
Boolean

如果 ToolStripLabel 作为链接,则为 true;否则为 false

适用于

ToolStripLabel(String, Image, Boolean, EventHandler)

初始化 ToolStripLabel 类的新实例,指定要显示的文本和图像,ToolStripLabel 是否作为链接,并提供 Click 事件处理程序。

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

参数

text
String

要在 ToolStripLabel 上显示的文本。

image
Image

要在 ToolStripLabel 上显示的 Image

isLink
Boolean

如果 ToolStripLabel 作为链接,则为 true;否则为 false

onClick
EventHandler

Click 事件处理程序。

适用于

ToolStripLabel(String, Image, Boolean, EventHandler, String)

初始化 ToolStripLabel 类的新实例,指定要显示的文本和图像,ToolStripLabel 是否作为链接,并提供 Click 事件处理程序和 ToolStripLabel 的名称。

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

参数

text
String

要在 ToolStripLabel 上显示的文本。

image
Image

要在 ToolStripLabel 上显示的 Image

isLink
Boolean

如果 ToolStripLabel 作为链接,则为 true;否则为 false

onClick
EventHandler

Click 事件处理程序。

name
String

ToolStripLabel 的名称。

适用于