MenuEventArgs.Item プロパティ
アセンブリ: System.Web (system.web.dll 内)


発生したイベントに関連付けられたメニュー項目のプロパティに対してアクセスや変更を行うには、Item プロパティを使用します。MenuItemClick イベントでは、この項目はユーザーがクリックしたメニュー項目を表します。MenuItemDataBound イベントでは、この項目はデータにバインドされるメニュー項目を表します。

Item プロパティを使用して、ユーザーがクリックしたメニュー項目のプロパティにアクセスする方法のコード例を次に示します。選択されたメニュー項目のテキストがページに表示されます。
<%@ Page Language="VB" %> <script runat="server"> Sub MenuItemClick_NavigationMenu(ByVal sender As Object, ByVal e As MenuEventArgs) ' Display the text of the menu item selected by the user. Message.Text = "You selected " & e.Item.Text & "." End Sub </script> <html> <body> <form runat="server"> <h3>MenuEventArgs Item Example</h3> <asp:menu id="NavigationMenu" staticdisplaylevels="2" staticsubmenuindent="10" orientation="Vertical" onmenuitemclick="MenuItemClick_NavigationMenu" runat="server"> <items> <asp:menuitem text="Home" tooltip="Home"> <asp:menuitem text="Music" tooltip="Music"> <asp:menuitem text="Classical" tooltip="Classical"/> <asp:menuitem text="Rock" tooltip="Rock"/> <asp:menuitem text="Jazz" tooltip="Jazz"/> </asp:menuitem> <asp:menuitem text="Movies" tooltip="Movies"> <asp:menuitem text="Action" tooltip="Action"/> <asp:menuitem text="Drama" tooltip="Drama"/> <asp:menuitem text="Musical" tooltip="Musical"/> </asp:menuitem> </asp:menuitem> </items> </asp:menu> <hr/> <asp:label id="Message" runat="server"/> </form> </body> </html>
<%@ Page Language="C#" %> <script runat="server"> void MenuItemClick_NavigationMenu(Object sender, MenuEventArgs e) { // Display the text of the menu item selected by the user. Message.Text = "You selected " + e.Item.Text + "."; } </script> <html> <body> <form runat="server"> <h3>MenuEventArgs Item Example</h3> <asp:menu id="NavigationMenu" staticdisplaylevels="2" staticsubmenuindent="10" orientation="Vertical" onmenuitemclick="MenuItemClick_NavigationMenu" runat="server"> <items> <asp:menuitem text="Home" tooltip="Home"> <asp:menuitem text="Music" tooltip="Music"> <asp:menuitem text="Classical" tooltip="Classical"/> <asp:menuitem text="Rock" tooltip="Rock"/> <asp:menuitem text="Jazz" tooltip="Jazz"/> </asp:menuitem> <asp:menuitem text="Movies" tooltip="Movies"> <asp:menuitem text="Action" tooltip="Action"/> <asp:menuitem text="Drama" tooltip="Drama"/> <asp:menuitem text="Musical" tooltip="Musical"/> </asp:menuitem> </asp:menuitem> </items> </asp:menu> <hr/> <asp:label id="Message" 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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- MenuEventArgs.Item プロパティのページへのリンク