BulletedList コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
BulletedList クラスの新しいインスタンスを初期化します。
public:
BulletedList();
public BulletedList ();
Public Sub New ()
例
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>
注釈
コンストラクターを BulletedList 使用して、 クラスの新しいインスタンスを BulletedList 初期化します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET