TreeNode.Expanded プロパティ

定義

ノードが展開されているかどうかを示す値を取得または設定します。

public:
 property Nullable<bool> Expanded { Nullable<bool> get(); void set(Nullable<bool> value); };
public bool? Expanded { get; set; }
member this.Expanded : Nullable<bool> with get, set
Public Property Expanded As Nullable(Of Boolean)

プロパティ値

Nullable<Boolean>

ノードが展開されている場合は true。ノードが展開されてない場合は false または null

次のコード例は、プロパティを使用 Expanded してプログラムによってノードを展開する方法を示しています。 1 の深さですべてのノードを展開状態に初期化します。 ルート ノードが展開されると、その子ノードは既に展開されていることに注意してください。 この例を正しく機能させるには、以下のサンプル XML データを Book.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 Data_Bound(Object sender, TreeNodeEventArgs e)
  {

    // Determine the depth of a node as it is bound to data.
    // If the depth is 1, expand the node.
    if(e.Node.Depth == 1)
    {

      e.Node.Expanded = true;

    }
    else
    {

      e.Node.Expanded = false;

    }
  }

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>TreeNode Expanded Example</title>
</head>
<body>
    <form id="form1" runat="server">
    
      <h3>TreeNode Expanded Example</h3>
    
      <asp:TreeView id="BookTreeView" 
        DataSourceID="BookXmlDataSource"
        OnTreeNodeDataBound="Data_Bound"
        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 Data_Bound(ByVal sender As Object, ByVal e As TreeNodeEventArgs)
        ' Determine the depth of a node as it is bound to data.
        ' If the depth is 1, expand the node.
        If e.Node.Depth = 1 Then
            e.Node.Expanded = True
        Else
            e.Node.Expanded = False
        End If
    End Sub

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>TreeNode Expanded Example</title>
</head>
<body>
    <form id="form1" runat="server">
    
      <h3>TreeNode Expanded Example</h3>
    
      <asp:TreeView id="BookTreeView" 
        DataSourceID="BookXmlDataSource"
        OnTreeNodeDataBound="Data_Bound"
        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">  
        </Section>  
        <Section Heading="Section 2">  
        </Section>  
    </Chapter>  
    <Chapter Heading="Chapter 2">  
        <Section Heading="Section 1">  
        </Section>  
    </Chapter>  
</Book>  

注釈

このプロパティを Expanded 使用して、ノードを展開するかどうかを指定または決定します。

ノードを展開したり折りたたんだりする場合は、それぞれメソッドをExpandCollapse呼び出します。 また、ノードとそのすべての子ノードをそれぞれ呼び出して、ノードとそのすべての子ノードを ExpandAll 展開および CollapseAll 折りたたむこともできます。

Expandedプロパティはトライステート プロパティであるため、次の C# コード スニペットによってコンパイル エラーが発生します。

protected void TreeView1_SelectedNodeChanged(object sender, EventArgs e)  
{  
if (TreeView1.Nodes[0].Expanded)  
{  
// some work here   
}  
}  

VB.Net は値をBoolean暗黙的に a NullableBooleanにキャストしますが、C# ではキャストされません。 したがって、プロパティの状態を明示的に確認することをお勧めします。 たとえば、Visual Basicと C# の次のコード例では、プロパティのExpanded値を明示的にテストします。

次Visual Basicコード例では、プロパティの値を明示的にExpandedテストします。 この例では、プロパティが Expanded ;NothingTrue設定されているかどうかをテストし、FalseステートメントをIf通過します。

If TreeView1.Nodes(0).Expanded = True Then 'some work hereEnd IF  

この C# コード例では、プロパティの値を明示的に Expanded テストします。 この例では、プロパティが Expanded ;NullTrue設定されているかどうかをテストし、FalseステートメントをIf通過します。

if( TreeView1.Nodes[0].Expanded == true ) { //some work here}  

適用対象

こちらもご覧ください