BulletedList Costruttore
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inizializza una nuova istanza della classe BulletedList.
public:
BulletedList();
public BulletedList ();
Public Sub New ()
Esempio
Nell'esempio di codice riportato di seguito viene illustrato come inizializzare una nuova istanza della classe BulletedList.
<%@ Page Language="C#" %>
<!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 runat="server">
<title>BulletedList Constructor Example</title>
<script runat="server">
void Button1_Click(object Sender, EventArgs e)
{
// Create a BulletedList control.
BulletedList CompaniesBulletedList = new BulletedList();
// Add the list items to the BulletedList control.
CompaniesBulletedList.Items.Add("Coho Winery");
CompaniesBulletedList.Items.Add("Contoso, Ltd.");
CompaniesBulletedList.Items.Add("Tailspin Toys");
// Add the BulletedList control to the Controls collection
// of the PlaceHolder control.
Place.Controls.Add(CompaniesBulletedList);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<h3>BulletedList Constructor Example</h3>
<asp:PlaceHolder id="Place"
runat="server">
</asp:PlaceHolder>
<hr />
<asp:Button id="Button1"
Text="Create and Show a BulletedList"
OnClick="Button1_Click"
runat="server"/>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!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 runat="server">
<title>BulletedList Constructor Example</title>
<script runat="server">
Sub Button1_Click(ByVal Sender As Object, ByVal e As EventArgs)
' Create a BulletedList control.
Dim CompaniesBulletedList As New BulletedList
' Add the list items to the BulletedList control.
CompaniesBulletedList.Items.Add("Coho Winery")
CompaniesBulletedList.Items.Add("Contoso, Ltd.")
CompaniesBulletedList.Items.Add("Tailspin Toys")
' Add the BulletedList control to the Controls collection
' of the PlaceHolder control.
Place.Controls.Add(CompaniesBulletedList)
End Sub
</script>
</head>
<body>
<form id="form1" runat="server">
<h3>BulletedList Constructor Example</h3>
<asp:PlaceHolder id="Place"
runat="server">
</asp:PlaceHolder>
<hr />
<asp:Button id="Button1"
Text="Create and Show a BulletedList"
OnClick="Button1_Click"
runat="server"/>
</form>
</body>
</html>
Commenti
Usare il BulletedList costruttore per inizializzare una nuova istanza della BulletedList classe.
Si applica a
Vedi anche
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.