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의 이름입니다.

적용 대상