Share via


ToolStripStatusLabel Constructeurs

Définition

Initialise une nouvelle instance de la classe ToolStripStatusLabel.

Surcharges

ToolStripStatusLabel()

Initialise une nouvelle instance de la classe ToolStripStatusLabel.

ToolStripStatusLabel(Image)

Initialise une nouvelle instance de la classe ToolStripStatusLabel qui affiche l'image spécifiée.

ToolStripStatusLabel(String)

Initialise une nouvelle instance de la classe ToolStripStatusLabel qui affiche le texte spécifié.

ToolStripStatusLabel(String, Image)

Initialise une nouvelle instance de la classe ToolStripStatusLabel qui affiche l'image et le texte spécifiés.

ToolStripStatusLabel(String, Image, EventHandler)

Initialise une nouvelle instance de la classe ToolStripStatusLabel qui affiche l'image et le texte spécifiés, et effectue l'action spécifiée lorsque l'utilisateur clique sur ToolStripStatusLabel.

ToolStripStatusLabel(String, Image, EventHandler, String)

Initialise une nouvelle instance de la classe ToolStripStatusLabel avec le nom spécifié qui affiche l'image et le texte spécifiés, et effectue l'action spécifiée lorsque l'utilisateur clique sur ToolStripStatusLabel.

ToolStripStatusLabel()

Initialise une nouvelle instance de la classe ToolStripStatusLabel.

public:
 ToolStripStatusLabel();
public ToolStripStatusLabel ();
Public Sub New ()

S’applique à

ToolStripStatusLabel(Image)

Initialise une nouvelle instance de la classe ToolStripStatusLabel qui affiche l'image spécifiée.

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)

Paramètres

image
Image

Image affiché sur ToolStripStatusLabel.

S’applique à

ToolStripStatusLabel(String)

Initialise une nouvelle instance de la classe ToolStripStatusLabel qui affiche le texte spécifié.

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)

Paramètres

text
String

String représentant le texte qui doit être affiché sur ToolStripStatusLabel.

S’applique à

ToolStripStatusLabel(String, Image)

Initialise une nouvelle instance de la classe ToolStripStatusLabel qui affiche l'image et le texte spécifiés.

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)

Paramètres

text
String

String représentant le texte qui doit être affiché sur ToolStripStatusLabel.

image
Image

Image affiché sur ToolStripStatusLabel.

S’applique à

ToolStripStatusLabel(String, Image, EventHandler)

Initialise une nouvelle instance de la classe ToolStripStatusLabel qui affiche l'image et le texte spécifiés, et effectue l'action spécifiée lorsque l'utilisateur clique sur 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)

Paramètres

text
String

String représentant le texte qui doit être affiché sur ToolStripStatusLabel.

image
Image

Image affiché sur ToolStripStatusLabel.

onClick
EventHandler

Spécifie l'action à effectuer lorsqu'un clic est effectué sur le contrôle.

S’applique à

ToolStripStatusLabel(String, Image, EventHandler, String)

Initialise une nouvelle instance de la classe ToolStripStatusLabel avec le nom spécifié qui affiche l'image et le texte spécifiés, et effectue l'action spécifiée lorsque l'utilisateur clique sur 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)

Paramètres

text
String

String représentant le texte qui doit être affiché sur ToolStripStatusLabel.

image
Image

Image affiché sur ToolStripStatusLabel.

onClick
EventHandler

Spécifie l'action à effectuer lorsqu'un clic est effectué sur le contrôle.

name
String

Nom de l'objet ToolStripStatusLabel.

S’applique à