TreeNode.ExpandAll Method
.NET Framework 4
Expands all the child tree nodes.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example expands all the tree nodes in a TreeView control when a CheckBox is checked, and collapses the FirstNode when the CheckBox is cleared. This example requires that you have a Form with a CheckBox, and a TreeView control with a TreeNodeCollection that has several TreeNode objects (preferably with three or more levels).
private void myCheckBox_CheckedChanged(object sender, System.EventArgs e) { // If the check box is checked, expand all the tree nodes. if (myCheckBox.Checked == true) { myTreeView.ExpandAll(); } else { // If the check box is not cheked, collapse the first tree node. myTreeView.Nodes[0].FirstNode.Collapse(); MessageBox.Show("The first and last node of CutomerList root node is collapsed"); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note