How to: Add and Remove Nodes with the Windows Forms TreeView Control Using the Designer

Because the Windows Forms TreeView control displays nodes in a hierarchical manner, when adding a node you must pay attention to what its parent node is.

The following procedure requires a Windows Application project with a form containing a TreeView control. For information about setting up such a project, see How to: Create a Windows Forms application project and How to: Add Controls to Windows Forms.

To add or remove nodes in the designer

  1. Select the TreeView control.

  2. In the Properties window, click the Ellipsis (The Ellipsis button (...) in the Properties window of Visual Studio.) button next to the Nodes property.

    The TreeNode Editor appears.

  3. To add nodes, a root node must exist; if one does not exist, you must first add a root by clicking the Add Root button. You can then add child nodes by selecting the root or any other node and clicking the Add Child button.

  4. To delete nodes, select the node to delete and then click the Delete button.

See also