ToolStripLabel 생성자

정의

ToolStripLabel 클래스의 새 인스턴스를 초기화합니다.

오버로드

Name Description
ToolStripLabel()

ToolStripLabel 클래스의 새 인스턴스를 초기화합니다.

ToolStripLabel(Image)

표시할 이미지를 지정하여 클래스의 ToolStripLabel 새 인스턴스를 초기화합니다.

ToolStripLabel(String)

표시할 텍스트를 지정하여 클래스의 ToolStripLabel 새 인스턴스를 초기화합니다.

ToolStripLabel(String, Image)

표시할 텍스트와 이미지를 지정하여 클래스의 ToolStripLabel 새 인스턴스를 초기화합니다.

ToolStripLabel(String, Image, Boolean)

표시할 텍스트와 이미지를 지정하고 링크 역할을 하는지 여부를 지정하여 클래스의 ToolStripLabelToolStripLabel 새 인스턴스를 초기화합니다.

ToolStripLabel(String, Image, Boolean, EventHandler)

표시할 텍스트와 이미지를 지정하고 링크 역할을 하는지 여부를 지정하고 이벤트 처리기를 제공하여 클래스의 ToolStripLabelToolStripLabel 새 인스턴스를 Click 초기화합니다.

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

표시할 텍스트와 이미지를 지정하고 링크 역할을 하는지 여부를 ToolStripLabel 지정하고 이벤트 처리기와 이름을 ToolStripLabel제공하여 Click 클래스의 ToolStripLabel 새 인스턴스를 초기화합니다.

ToolStripLabel()

Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs

ToolStripLabel 클래스의 새 인스턴스를 초기화합니다.

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

적용 대상

ToolStripLabel(Image)

Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs

표시할 이미지를 지정하여 클래스의 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

Image 에 표시할 개체입니다ToolStripLabel.

적용 대상

ToolStripLabel(String)

Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs

표시할 텍스트를 지정하여 클래스의 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)

Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs

표시할 텍스트와 이미지를 지정하여 클래스의 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

Image 에 표시할 개체입니다ToolStripLabel.

적용 대상

ToolStripLabel(String, Image, Boolean)

Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs

표시할 텍스트와 이미지를 지정하고 링크 역할을 하는지 여부를 지정하여 클래스의 ToolStripLabelToolStripLabel 새 인스턴스를 초기화합니다.

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

Image 에 표시할 개체입니다ToolStripLabel.

isLink
Boolean

링크로 작동하면 이고, 그렇지 않으면 .입니다.

적용 대상

ToolStripLabel(String, Image, Boolean, EventHandler)

Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs

표시할 텍스트와 이미지를 지정하고 링크 역할을 하는지 여부를 지정하고 이벤트 처리기를 제공하여 클래스의 ToolStripLabelToolStripLabel 새 인스턴스를 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

Image 에 표시할 개체입니다ToolStripLabel.

isLink
Boolean

링크로 작동하면 이고, 그렇지 않으면 .입니다.

onClick
EventHandler

Click 이벤트 처리기입니다.

적용 대상

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

Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs
Source:
ToolStripLabel.cs

표시할 텍스트와 이미지를 지정하고 링크 역할을 하는지 여부를 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

Image 에 표시할 개체입니다ToolStripLabel.

isLink
Boolean

링크로 작동하면 이고, 그렇지 않으면 .입니다.

onClick
EventHandler

Click 이벤트 처리기입니다.

name
String

ToolStripLabel의 이름입니다.

적용 대상