ToolStripStatusLabel Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci ToolStripStatusLabel třídy.
Přetížení
| Name | Description |
|---|---|
| ToolStripStatusLabel() |
Inicializuje novou instanci ToolStripStatusLabel třídy. |
| ToolStripStatusLabel(Image) |
Inicializuje novou instanci ToolStripStatusLabel třídy, která zobrazí zadaný obrázek. |
| ToolStripStatusLabel(String) |
Inicializuje novou instanci ToolStripStatusLabel třídy, která zobrazí zadaný text. |
| ToolStripStatusLabel(String, Image) |
Inicializuje novou instanci ToolStripStatusLabel třídy, která zobrazí zadaný obrázek a text. |
| ToolStripStatusLabel(String, Image, EventHandler) |
Inicializuje novou instanci ToolStripStatusLabel třídy, která zobrazí zadaný obrázek a text, a provede zadanou akci, když uživatel klikne na ToolStripStatusLabel. |
| ToolStripStatusLabel(String, Image, EventHandler, String) |
Inicializuje novou instanci ToolStripStatusLabel třídy se zadaným názvem, který zobrazí zadaný obrázek a text, a provede zadanou akci, když uživatel klikne na ToolStripStatusLabel. |
ToolStripStatusLabel()
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
Inicializuje novou instanci ToolStripStatusLabel třídy.
public:
ToolStripStatusLabel();
public ToolStripStatusLabel();
Public Sub New ()
Platí pro
ToolStripStatusLabel(Image)
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
Inicializuje novou instanci ToolStripStatusLabel třídy, která zobrazí zadaný obrázek.
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)
Parametry
- image
- Image
Zobrazí se Image na sadě ToolStripStatusLabel.
Platí pro
ToolStripStatusLabel(String)
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
Inicializuje novou instanci ToolStripStatusLabel třídy, která zobrazí zadaný text.
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)
Parametry
- text
- String
A String představující text, který má být zobrazen na .ToolStripStatusLabel
Platí pro
ToolStripStatusLabel(String, Image)
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
Inicializuje novou instanci ToolStripStatusLabel třídy, která zobrazí zadaný obrázek a text.
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)
Parametry
- text
- String
A String představující text, který má být zobrazen na .ToolStripStatusLabel
- image
- Image
Zobrazí se Image na sadě ToolStripStatusLabel.
Platí pro
ToolStripStatusLabel(String, Image, EventHandler)
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
Inicializuje novou instanci ToolStripStatusLabel třídy, která zobrazí zadaný obrázek a text, a provede zadanou akci, když uživatel klikne na 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)
Parametry
- text
- String
A String představující text, který má být zobrazen na .ToolStripStatusLabel
- image
- Image
Zobrazí se Image na sadě ToolStripStatusLabel.
- onClick
- EventHandler
Určuje akci, která se má provést po kliknutí na ovládací prvek.
Platí pro
ToolStripStatusLabel(String, Image, EventHandler, String)
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
- Zdroj:
- ToolStripStatusLabel.cs
Inicializuje novou instanci ToolStripStatusLabel třídy se zadaným názvem, který zobrazí zadaný obrázek a text, a provede zadanou akci, když uživatel klikne na 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)
Parametry
- text
- String
A String představující text, který má být zobrazen na .ToolStripStatusLabel
- image
- Image
Zobrazí se Image na sadě ToolStripStatusLabel.
- onClick
- EventHandler
Určuje akci, která se má provést po kliknutí na ovládací prvek.
- name
- String
Název ToolStripStatusLabel.