ToolStripStatusLabel Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue Instanz der ToolStripStatusLabel-Klasse.
Überlädt
| Name | Beschreibung |
|---|---|
| ToolStripStatusLabel() |
Initialisiert eine neue Instanz der ToolStripStatusLabel-Klasse. |
| ToolStripStatusLabel(Image) |
Initialisiert eine neue Instanz der ToolStripStatusLabel Klasse, die das angegebene Bild anzeigt. |
| ToolStripStatusLabel(String) |
Initialisiert eine neue Instanz der ToolStripStatusLabel Klasse, die den angegebenen Text anzeigt. |
| ToolStripStatusLabel(String, Image) |
Initialisiert eine neue Instanz der ToolStripStatusLabel Klasse, die das angegebene Bild und den angegebenen Text anzeigt. |
| ToolStripStatusLabel(String, Image, EventHandler) |
Initialisiert eine neue Instanz der ToolStripStatusLabel Klasse, die das angegebene Bild und den angegebenen Text anzeigt und die angegebene Aktion ausführt, wenn der Benutzer auf die ToolStripStatusLabel. |
| ToolStripStatusLabel(String, Image, EventHandler, String) |
Initialisiert eine neue Instanz der ToolStripStatusLabel Klasse mit dem angegebenen Namen, der das angegebene Bild und den Text anzeigt, und führt die angegebene Aktion aus, wenn der Benutzer auf die ToolStripStatusLabel. |
ToolStripStatusLabel()
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
Initialisiert eine neue Instanz der ToolStripStatusLabel-Klasse.
public:
ToolStripStatusLabel();
public ToolStripStatusLabel();
Public Sub New ()
Gilt für:
ToolStripStatusLabel(Image)
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
Initialisiert eine neue Instanz der ToolStripStatusLabel Klasse, die das angegebene Bild anzeigt.
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)
Parameter
- image
- Image
Eine Image , die auf der ToolStripStatusLabel.
Gilt für:
ToolStripStatusLabel(String)
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
Initialisiert eine neue Instanz der ToolStripStatusLabel Klasse, die den angegebenen Text anzeigt.
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)
Parameter
- text
- String
A String representing the text to be displayed on the ToolStripStatusLabel.
Gilt für:
ToolStripStatusLabel(String, Image)
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
Initialisiert eine neue Instanz der ToolStripStatusLabel Klasse, die das angegebene Bild und den angegebenen Text anzeigt.
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)
Parameter
- text
- String
A String representing the text to be displayed on the ToolStripStatusLabel.
- image
- Image
Eine Image , die auf der ToolStripStatusLabel.
Gilt für:
ToolStripStatusLabel(String, Image, EventHandler)
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
Initialisiert eine neue Instanz der ToolStripStatusLabel Klasse, die das angegebene Bild und den angegebenen Text anzeigt und die angegebene Aktion ausführt, wenn der Benutzer auf die 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)
Parameter
- text
- String
A String representing the text to be displayed on the ToolStripStatusLabel.
- image
- Image
Eine Image , die auf der ToolStripStatusLabel.
- onClick
- EventHandler
Gibt die auszuführende Aktion an, wenn auf das Steuerelement geklickt wird.
Gilt für:
ToolStripStatusLabel(String, Image, EventHandler, String)
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
- Quelle:
- ToolStripStatusLabel.cs
Initialisiert eine neue Instanz der ToolStripStatusLabel Klasse mit dem angegebenen Namen, der das angegebene Bild und den Text anzeigt, und führt die angegebene Aktion aus, wenn der Benutzer auf die 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)
Parameter
- text
- String
A String representing the text to be displayed on the ToolStripStatusLabel.
- image
- Image
Eine Image , die auf der ToolStripStatusLabel.
- onClick
- EventHandler
Gibt die auszuführende Aktion an, wenn auf das Steuerelement geklickt wird.
- name
- String
Der Name des ToolStripStatusLabel.