BulletedListEventHandler デリゲート
アセンブリ: System.Web (system.web.dll 内)

/** @delegate */ public delegate void BulletedListEventHandler ( Object sender, BulletedListEventArgs e )

BulletedListEventHandler デリゲートを作成する場合は、BulletedList コントロールの Click イベントを処理するメソッドを識別してください。イベントをイベント ハンドラに関連付けるには、デリゲートのインスタンスをイベントに追加します。デリゲートを削除しない限り、そのイベントが発生すると常にイベント ハンドラが呼び出されます。イベント ハンドラ デリゲートの詳細については、「イベントとデリゲート」を参照してください。

BulletedList コントロールの Click イベントのイベント ハンドラを指定およびコード化する方法の例を次に示します。リスト項目がクリックされると、メッセージがページの Label コントロールに表示されます。
<%@ Page Language="VB" %> <html> <head> <script runat="server"> Sub ItemsBulletedList_Click(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.BulletedListEventArgs) ' Change the message displayed in the label based on the index ' of the list item that was clicked. Select Case (e.Index) Case 0 Message.Text = "You clicked list item 1." Case 1 Message.Text = "You clicked list item 2." Case 2 Message.Text = "You clicked list item 3." Case Else Throw New Exception("You did not click a valid list item.") End Select End Sub </script> </head> <body> <h3>BulletedList Click Example</h3> <form ID="Form1" runat="server"> <P>Click on an item in the list to raise the Click event.</p> <asp:BulletedList id="ItemsBulletedList" BulletStyle="Disc" DisplayMode="LinkButton" OnClick="ItemsBulletedList_Click" runat="server"> <asp:ListItem Value="http://www.cohowinery.com">Coho Winery</asp:ListItem> <asp:ListItem Value="http://www.contoso.com">Contoso, Ltd.</asp:ListItem> <asp:ListItem Value="http://www.tailspintoys.com">Tailspin Toys</asp:ListItem> </asp:BulletedList> <asp:Label id="Message" Font-Size="12" Width="168px" Font-Bold="True" runat="server"/> </form> </body> </html>

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からBulletedListEventHandler デリゲートを検索する場合は、下記のリンクをクリックしてください。

- BulletedListEventHandler デリゲートのページへのリンク