ToolStripStatusLabel 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ToolStripStatusLabel 클래스의 새 인스턴스를 초기화합니다.
오버로드
| Name | Description |
|---|---|
| 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()
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
ToolStripStatusLabel 클래스의 새 인스턴스를 초기화합니다.
public:
ToolStripStatusLabel();
public ToolStripStatusLabel();
Public Sub New ()
적용 대상
ToolStripStatusLabel(Image)
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
지정된 이미지를 표시하는 클래스의 ToolStripStatusLabel 새 인스턴스를 초기화합니다.
public:
ToolStripStatusLabel(System::Drawing::Image ^ image);
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)
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
지정된 텍스트를 표시하는 클래스의 ToolStripStatusLabel 새 인스턴스를 초기화합니다.
public:
ToolStripStatusLabel(System::String ^ text);
public ToolStripStatusLabel(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)
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
지정된 이미지와 텍스트를 표시하는 클래스의 ToolStripStatusLabel 새 인스턴스를 초기화합니다.
public:
ToolStripStatusLabel(System::String ^ text, System::Drawing::Image ^ image);
public ToolStripStatusLabel(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)
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
지정된 이미지와 텍스트를 표시하고 사용자가 클릭할 때 지정된 작업을 수행하는 클래스의 새 인스턴스 ToolStripStatusLabel 를 초기화합니다 ToolStripStatusLabel.
public:
ToolStripStatusLabel(System::String ^ text, System::Drawing::Image ^ image, EventHandler ^ onClick);
public ToolStripStatusLabel(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)
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
- Source:
- ToolStripStatusLabel.cs
지정된 이미지와 텍스트를 표시하고 사용자가 클릭할 때 지정된 작업을 수행하는 지정된 이름을 사용하여 클래스의 새 인스턴스 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);
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의 이름입니다.