MenuItemCollection.Contains(MenuItem) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した MenuItem オブジェクトがコレクション内にあるかどうかを確認します。
public:
bool Contains(System::Web::UI::WebControls::MenuItem ^ c);
public bool Contains (System.Web.UI.WebControls.MenuItem c);
member this.Contains : System.Web.UI.WebControls.MenuItem -> bool
Public Function Contains (c As MenuItem) As Boolean
パラメーター
戻り値
指定した MenuItem オブジェクトがコレクションに格納されている場合は true
。それ以外の場合は false
。
例
次のコード例では、 メソッドを使用 Contains して、オブジェクトが オブジェクト内に含まれているかどうかを MenuItem 判断する方法を MenuItemCollection 示します。
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void NavigationMenu_MenuItemClick(Object sender, MenuEventArgs e)
{
// Use the Contains method to determine whether the menu
// item selected by the user is contained in the Items
// collection of the Menu control.
if(NavigationMenu.Items.Contains(e.Item))
{
Message.Text = "You selected the root menu item.";
}
else
{
Message.Text = "You selected a submenu item.";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>MenuItemCollection Contains Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>MenuItemCollection Contains Example</h3>
Select an item from the menu.
<br/><br/>
<asp:menu id="NavigationMenu"
orientation="Vertical"
target="_blank"
onmenuitemclick="NavigationMenu_MenuItemClick"
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="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub NavigationMenu_MenuItemClick(ByVal sender As Object, ByVal e As MenuEventArgs)
' Use the Contains method to determine whether the menu
' item selected by the user is contained in the Items
' collection of the Menu control.
If NavigationMenu.Items.Contains(e.Item) Then
Message.Text = "You selected the root menu item."
Else
Message.Text = "You selected a submenu item."
End If
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>MenuItemCollection Contains Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>MenuItemCollection Contains Example</h3>
Select an item from the menu.
<br/><br/>
<asp:menu id="NavigationMenu"
orientation="Vertical"
target="_blank"
onmenuitemclick="NavigationMenu_MenuItemClick"
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>
注釈
オブジェクトが現在MenuItemCollectionのContainsオブジェクトに含まれているかどうかをMenuItem判断するには、 メソッドを使用します。 MenuItemとそのプロパティは、渡された値と比較されます。 このメソッドは、通常、コレクションのメニュー項目の MenuItem 追加や削除など、タスクを実行する前にオブジェクトの存在をテストするために使用されます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET