.NET Framework Class Library
TreeView..::.TreeNodeCollapsed Event

Occurs when a node is collapsed in the TreeView control.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic (Declaration)
Public Event TreeNodeCollapsed As TreeNodeEventHandler
Visual Basic (Usage)
Dim instance As TreeView
Dim handler As TreeNodeEventHandler

AddHandler instance.TreeNodeCollapsed, handler
C#
public event TreeNodeEventHandler TreeNodeCollapsed
Visual C++
public:
 event TreeNodeEventHandler^ TreeNodeCollapsed {
    void add (TreeNodeEventHandler^ value);
    void remove (TreeNodeEventHandler^ value);
}
JScript
JScript does not support events.
ASP.NET
<asp:TreeView OnTreeNodeCollapsed="TreeNodeEventHandler" />
Remarks

The TreeNodeCollapsed event is raised when a node is collapsed in the TreeView control. This allows you to provide an event-handling method that performs a custom routine whenever this event occurs.

For more information about handling events, see Consuming Events.

Examples

The following code example demonstrates how to use the TreeNodeCollapsed event to update the content of a Label control when the user collapses a node in the TreeView control.

Visual Basic
<%@ 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 Node_Expand(ByVal sender As Object, ByVal e As TreeNodeEventArgs)

    Message.Text = "You expanded the " & e.Node.Text & " node."

  End Sub

  Sub Node_Collapse(ByVal sender As Object, ByVal e As TreeNodeEventArgs)

    Message.Text = "You collapsed the " & e.Node.Text & " node."

  End Sub

</script>

<html  >

  <head runat="server">
    <title>TreeView TreeNodeExpand and TreeNodeCollapse Example</title>
</head>
<body>
    <form id="form1" runat="server">

      <h3>TreeView TreeNodeExpand and TreeNodeCollapse Example</h3>

      <asp:TreeView id="BookTreeView"
        ExpandDepth="1"
        OnTreeNodeExpanded="Node_Expand"
        OnTreeNodeCollapsed="Node_Collapse"
        runat="server">

        <Nodes>

          <asp:TreeNode Value="Chapter 1" 
            Text="Chapter 1">

            <asp:TreeNode Value="Section 1"
              Text="Section 1">

              <asp:TreeNode Value="Paragraph 1" 
                Text="Paragraph 1">
              </asp:TreeNode>

            </asp:TreeNode>

            <asp:TreeNode Value="Section 2" 
              Text="Section 2">
            </asp:TreeNode>

          </asp:TreeNode>

        </Nodes>

      </asp:TreeView>

      <br />

      <asp:Label id="Message" runat="server"/>

    </form>
  </body>
</html>

C#
<%@ 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 Node_Expand(Object sender, TreeNodeEventArgs e)
  {

    Message.Text = "You expanded the " + e.Node.Text + " node.";

  }

  void Node_Collapse(Object sender, TreeNodeEventArgs e)
  {

    Message.Text = "You collapsed the " + e.Node.Text + " node.";

  }

</script>

<html  >

  <head runat="server">
    <title>TreeView TreeNodeExpand and TreeNodeCollapse Example</title>
</head>
<body>
    <form id="form1" runat="server">

      <h3>TreeView TreeNodeExpand and TreeNodeCollapse Example</h3>

      <asp:TreeView id="BookTreeView"
        ExpandDepth="1"
        OnTreeNodeExpanded="Node_Expand"
        OnTreeNodeCollapsed="Node_Collapse"
        runat="server">

        <Nodes>

          <asp:TreeNode Value="Chapter 1" 
            Text="Chapter 1">

            <asp:TreeNode Value="Section 1"
              Text="Section 1">

              <asp:TreeNode Value="Paragraph 1" 
                Text="Paragraph 1">
              </asp:TreeNode>

            </asp:TreeNode>

            <asp:TreeNode Value="Section 2" 
              Text="Section 2">
            </asp:TreeNode>

          </asp:TreeNode>

        </Nodes>

      </asp:TreeView>

      <br />

      <asp:Label id="Message" runat="server"/>

    </form>
  </body>
</html>

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference

Other Resources

Tags :


Page view tracker