다음을 통해 공유


TreeNodeBindingCollection.Item[Int32] 속성

정의

TreeNodeBinding 개체의 지정된 인덱스에 있는 TreeNodeBindingCollection 개체를 가져오거나 설정합니다.

public:
 property System::Web::UI::WebControls::TreeNodeBinding ^ default[int] { System::Web::UI::WebControls::TreeNodeBinding ^ get(int i); void set(int i, System::Web::UI::WebControls::TreeNodeBinding ^ value); };
public System.Web.UI.WebControls.TreeNodeBinding this[int i] { get; set; }
member this.Item(int) : System.Web.UI.WebControls.TreeNodeBinding with get, set
Default Public Property Item(i As Integer) As TreeNodeBinding

매개 변수

i
Int32

검색할 TreeNodeBinding의 인덱스(0부터 시작)입니다.

속성 값

TreeNodeBinding

TreeNodeBinding의 지정된 인덱스에 있는 TreeNodeBindingCollection입니다.

예제

다음 코드 예제를 사용 하는 방법에 설명 합니다 Item[] 에 있는 항목에 액세스 하는 인덱서를 TreeNodeBindingCollection 개체입니다. TreeNodeBinding 세 번째 수준 노드의 개체는 새 값을 사용 하 여 프로그래밍 방식으로 업데이트 됩니다. 이 예제가 제대로 작동 하려면에 대 한 Book.xml 라는 파일에이 섹션의 끝에 있는 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)
  {

    // Use the indexer to access the TreeNodeBinding object for
    // the third-level nodes (index 2) and change the value of 
    // its TextField property to "Subject".
    BookTreeView.DataBindings[2].TextField = "Subject";

  }

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>TreeNodeBindingCollection Indexer Example</title>
</head>
<body>
    <form id="form1" runat="server">
    
      <h3>TreeNodeBindingCollection Indexer Example</h3>
    
      <asp:TreeView id="BookTreeView" 
        DataSourceID="BookXmlDataSource"
        runat="server">
         
        <DataBindings>
          <asp:TreeNodeBinding DataMember="Book" TextField="Title"/>
          <asp:TreeNodeBinding DataMember="Chapter" TextField="Heading"/>
          <asp:TreeNodeBinding DataMember="Section" TextField="Heading"/>
        </DataBindings>
         
      </asp:TreeView>

      <asp:XmlDataSource id="BookXmlDataSource"  
        DataFile="Book.xml"
        runat="server">
      </asp:XmlDataSource>
    
    </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)

    ' Use the indexer to access the TreeNodeBinding object for
    ' the third-level nodes (index 2) and change the value of 
    ' its TextField property to "Subject".
    BookTreeView.DataBindings(2).TextField = "Subject"

  End Sub

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>TreeNodeBindingCollection Indexer Example</title>
</head>
<body>
    <form id="form1" runat="server">
    
      <h3>TreeNodeBindingCollection Indexer Example</h3>
    
      <asp:TreeView id="BookTreeView" 
        DataSourceID="BookXmlDataSource"
        runat="server">
         
        <DataBindings>
          <asp:TreeNodeBinding DataMember="Book" TextField="Title"/>
          <asp:TreeNodeBinding DataMember="Chapter" TextField="Heading"/>
          <asp:TreeNodeBinding DataMember="Section" TextField="Heading"/>
        </DataBindings>
         
      </asp:TreeView>

      <asp:XmlDataSource id="BookXmlDataSource"  
        DataFile="Book.xml"
        runat="server">
      </asp:XmlDataSource>
    
    </form>
  </body>
</html>

다음은 앞의 코드 예제에 대 한 XML 데이터입니다.

<Book Title="Book Title">  
    <Chapter Heading="Chapter 1">  
        <Section Heading="Section 1"  
            Subject="Subject 1">  
        </Section>  
        <Section Heading="Section 2"  
            Subject="Subject 1">  
        </Section>  
    </Chapter>  
    <Chapter Heading="Chapter 2">  
        <Section Heading="Section 1"  
            Subject="Subject 1">  
        </Section>  
    </Chapter>  
</Book>  

설명

사용 하 여를 Item[] 액세스 하는 인덱서를 TreeNodeBinding 에서 개체를 TreeNodeBindingCollection 개체에 있는 i 배열 표기법을 사용 하 여 합니다. 합니다 Item[] 인덱서를 사용 하면 수정 하거나 바꿀 수 있습니다는 TreeNodeBinding 컬렉션에서 직접 개체입니다.

적용 대상

추가 정보