MenuItemBindingCollection.IndexOf(MenuItemBinding) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에서 지정된 MenuItemBinding 개체의 인덱스를 결정합니다.
public:
int IndexOf(System::Web::UI::WebControls::MenuItemBinding ^ value);
public int IndexOf(System.Web.UI.WebControls.MenuItemBinding value);
member this.IndexOf : System.Web.UI.WebControls.MenuItemBinding -> int
Public Function IndexOf (value As MenuItemBinding) As Integer
매개 변수
- value
- MenuItemBinding
인 MenuItemBinding 덱스 확인입니다.
반품
컬렉션 내에서 처음 발견되는 인덱스(있는 경우)의 value 인덱스(0부터 시작)이고, 그렇지 않으면 -1입니다.
예제
다음 코드 예제에서는 컬렉션에서 개체의 인덱스를 확인 하는 메서드를 사용 IndexOf 하는 MenuItemBinding 방법을 보여 줍니다. 이 예제가 제대로 작동하려면 아래 예제 XML 데이터를 Map.xml파일에 복사해야 합니다.
<%@ 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 Page_Load(Object sender, EventArgs e)
{
if(!IsPostBack)
{
// Use the indexer to retrieve the MenuItemBinding
// object at index 2.
MenuItemBinding binding = NavigationMenu.DataBindings[2];
int index = NavigationMenu.DataBindings.IndexOf(binding);
Message.Text = "The MenuItemBinding object that is applied " +
"to the menu items at depth 2 is contained in the Bindings " +
"collection at index " + index.ToString() + ".";
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>MenuItemBindingCollection IndexOf Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>MenuItemBindingCollection IndexOf Example</h3>
<asp:menu id="NavigationMenu"
staticdisplaylevels="2"
staticsubmenuindent="10"
orientation="Vertical"
target="_blank"
datasourceid="MenuSource"
runat="server">
<DataBindings>
<asp:menuitembinding datamember="MapHomeNode"
depth="0"
textfield="title"
navigateurlfield="url"/>
<asp:menuitembinding datamember="MapNode"
depth="1"
textfield="title"
navigateurlfield="url"/>
<asp:menuitembinding datamember="MapNode"
depth="2"
textfield="title"
navigateurlfield="url"/>
</DataBindings>
</asp:menu>
<hr/>
<asp:label id="Message"
runat="server"/>
<asp:xmldatasource id="MenuSource"
datafile="Map.xml"
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 Page_Load(ByVal sender As Object, ByVal e As EventArgs)
If Not IsPostBack Then
' Use the indexer to retrieve the MenuItemBinding
' object at index 2.
Dim binding As MenuItemBinding = NavigationMenu.DataBindings(2)
Dim index As Integer = NavigationMenu.DataBindings.IndexOf(binding)
Message.Text = "The MenuItemBinding object that is applied " & _
"to the menu items at depth 2 is contained in the Bindings " & _
"collection at index " & index.ToString() & "."
End If
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>MenuItemBindingCollection IndexOf Example</title>
</head>
<body>
<form id="Form1" runat="server">
<h3>MenuItemBindingCollection IndexOf Example</h3>
<asp:menu id="NavigationMenu"
staticdisplaylevels="2"
staticsubmenuindent="10"
orientation="Vertical"
target="_blank"
datasourceid="MenuSource"
runat="server">
<DataBindings>
<asp:menuitembinding datamember="MapHomeNode"
depth="0"
textfield="title"
navigateurlfield="url"/>
<asp:menuitembinding datamember="MapNode"
depth="1"
textfield="title"
navigateurlfield="url"/>
<asp:menuitembinding datamember="MapNode"
depth="2"
textfield="title"
navigateurlfield="url"/>
</DataBindings>
</asp:menu>
<hr/>
<asp:label id="Message"
runat="server"/>
<asp:xmldatasource id="MenuSource"
datafile="Map.xml"
runat="server"/>
</form>
</body>
</html>
다음은 이전 예제의 샘플 사이트 맵 데이터입니다.
<MapHomeNode url="~\Home.aspx"
title="Home"
description="Home">
<MapNode url="~\Music.aspx"
title="Music"
description="Music">
<MapNode url="~\Classical.aspx"
title="Classical"
description="Classical"/>
<MapNode url="~\Rock.aspx"
title="Rock"
description="Rock"/>
<MapNode url="~\Jazz.aspx"
title="Jazz"
description="Jazz"/>
</MapNode>
<MapNode url="~\Movies.aspx"
title="Movies"
description="Movies">
<MapNode url="~\Action.aspx"
title="Action"
description="Action"/>
<MapNode url="~\Drama.aspx"
title="Drama"
description="Drama"/>
<MapNode url="~\Musical.aspx"
title="Musical"
description="Musical"/>
</MapNode>
</MapHomeNode>
설명
메서드를 IndexOf 사용하여 컬렉션에서 지정된 MenuItemBinding 개체의 인덱스 확인
메모
컬렉션에 개체가 MenuItemBinding 표시되는 순서는 해당 개체가 컨트롤의 메뉴 항목에 Menu 적용되는 방식에 영향을 주지 않습니다.
메뉴 항목 바인딩이 컬렉션에 없으면 메서드는 -1을 반환합니다.
메모
지정된 메뉴 항목 바인딩이 컬렉션에 여러 번 나타나면 첫 번째 항목의 인덱스가 반환됩니다.