Label Constructeur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe Label.
public:
Label();
public Label ();
Public Sub New ()
Exemples
L’exemple suivant montre comment créer et initialiser une nouvelle instance du Label contrôle.
Notes
L’exemple de code suivant utilise le modèle de code à fichier unique et peut ne pas fonctionner correctement s’il est copié directement dans un fichier code-behind. Cet exemple de code doit être copié dans un fichier texte vide qui a une extension .aspx. Pour plus d’informations sur le modèle de code Web Forms, consultez ASP.NET modèle de code de page Web Forms.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Label Example</title>
<script language="C#" runat="server">
void Button1_Click(Object Sender, EventArgs e)
{
Label myLabel = new Label();
myLabel.Text = "This is a new Label";
Page.Controls.Add(myLabel);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<h3>Label Example</h3>
<asp:Button id="Button1"
Text="Create and Show a Label"
OnClick="Button1_Click"
runat="server"/>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Label Example</title>
<script language="VB" runat="server">
Sub Button1_Click(Sender As Object, e As EventArgs)
Dim myLabel As New Label()
myLabel.Text = "This is a new Label"
Page.Controls.Add(myLabel)
End Sub
</script>
</head>
<body>
<form id="form1" runat="server">
<h3>Label Example</h3>
<asp:Button id="Button1"
Text="Create and Show a Label"
OnClick="Button1_Click"
runat="server"/>
</form>
</body>
</html>
Remarques
Utilisez ce constructeur pour créer et initialiser une nouvelle instance de la Label classe .