ToolStripLabel 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 ToolStripLabel třídy.
Přetížení
| Name | Description |
|---|---|
| ToolStripLabel() |
Inicializuje novou instanci ToolStripLabel třídy. |
| ToolStripLabel(Image) |
Inicializuje novou instanci ToolStripLabel třídy a určuje obrázek, který se má zobrazit. |
| ToolStripLabel(String) |
Inicializuje novou instanci ToolStripLabel třídy a určuje text, který se má zobrazit. |
| ToolStripLabel(String, Image) |
Inicializuje novou instanci ToolStripLabel třídy a určuje text a obrázek, který se má zobrazit. |
| ToolStripLabel(String, Image, Boolean) |
Inicializuje novou instanci ToolStripLabel třídy, určuje text a obrázek, který se má zobrazit a zda ToolStripLabel funguje jako odkaz. |
| ToolStripLabel(String, Image, Boolean, EventHandler) |
Inicializuje novou instanci ToolStripLabel třídy, určuje text a obrázek, který se má zobrazit, zda ToolStripLabel funguje jako odkaz a poskytuje obslužnou rutinu Click události. |
| ToolStripLabel(String, Image, Boolean, EventHandler, String) |
Inicializuje novou instanci ToolStripLabel třídy, určuje text a obrázek, který se má zobrazit, zda ToolStripLabel funguje jako odkaz, a poskytuje obslužnou rutinu Click a název ToolStripLabeludálosti . |
ToolStripLabel()
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
Inicializuje novou instanci ToolStripLabel třídy.
public:
ToolStripLabel();
public ToolStripLabel();
Public Sub New ()
Platí pro
ToolStripLabel(Image)
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
Inicializuje novou instanci ToolStripLabel třídy a určuje obrázek, který se má zobrazit.
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)
Parametry
- image
- Image
Zobrazení Image na .ToolStripLabel
Platí pro
ToolStripLabel(String)
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
Inicializuje novou instanci ToolStripLabel třídy a určuje text, který se má zobrazit.
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)
Parametry
- text
- String
Text, který se má zobrazit na kartě ToolStripLabel.
Platí pro
ToolStripLabel(String, Image)
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
Inicializuje novou instanci ToolStripLabel třídy a určuje text a obrázek, který se má zobrazit.
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)
Parametry
- text
- String
Text, který se má zobrazit na kartě ToolStripLabel.
- image
- Image
Zobrazení Image na .ToolStripLabel
Platí pro
ToolStripLabel(String, Image, Boolean)
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
Inicializuje novou instanci ToolStripLabel třídy, určuje text a obrázek, který se má zobrazit a zda ToolStripLabel funguje jako odkaz.
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)
Parametry
- text
- String
Text, který se má zobrazit na kartě ToolStripLabel.
- image
- Image
Zobrazení Image na .ToolStripLabel
- isLink
- Boolean
true v případě, že ToolStripLabel se jedná o propojení, jinak , false.
Platí pro
ToolStripLabel(String, Image, Boolean, EventHandler)
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
Inicializuje novou instanci ToolStripLabel třídy, určuje text a obrázek, který se má zobrazit, zda ToolStripLabel funguje jako odkaz a poskytuje obslužnou rutinu Click události.
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)
Parametry
- text
- String
Text, který se má zobrazit na kartě ToolStripLabel.
- image
- Image
Zobrazení Image na .ToolStripLabel
- isLink
- Boolean
true v případě, že ToolStripLabel se jedná o propojení, jinak , false.
- onClick
- EventHandler
Obslužná rutina Click události.
Platí pro
ToolStripLabel(String, Image, Boolean, EventHandler, String)
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
- Zdroj:
- ToolStripLabel.cs
Inicializuje novou instanci ToolStripLabel třídy, určuje text a obrázek, který se má zobrazit, zda ToolStripLabel funguje jako odkaz, a poskytuje obslužnou rutinu Click a název ToolStripLabeludálosti .
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)
Parametry
- text
- String
Text, který se má zobrazit na kartě ToolStripLabel.
- image
- Image
Zobrazení Image na .ToolStripLabel
- isLink
- Boolean
true v případě, že ToolStripLabel se jedná o propojení, jinak , false.
- onClick
- EventHandler
Obslužná rutina Click události.
- name
- String
Název ToolStripLabel.