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

적용 대상