Use the TreeNode.ExpandAll method to conveniently expand the current node and all its child nodes.
As an alternative, you can also set the TreeNode.Expanded property of the current node and each of its child nodes to true.
To expand only the current node, consider using the TreeNode.Expand method.
TreeView.ExpandAll will expand all the nodes in the entire tree.