Label Costruttore

Definizione

Inizializza una nuova istanza della classe Label.

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

Esempio

Nell'esempio seguente viene illustrato come creare e inizializzare una nuova istanza del Label controllo .

Nota

L'esempio di codice seguente usa il modello di codice a file singolo e potrebbe non funzionare correttamente se copiato direttamente in un file code-behind. Questo esempio di codice deve essere copiato in un file di testo vuoto con estensione aspx. Per altre informazioni sul modello di codice Web Forms, vedere Web Forms ASP.NET Page Code Model.

<%@ 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>

Commenti

Utilizzare questo costruttore per creare e inizializzare una nuova istanza della Label classe .

Si applica a