TreeView Component homepage

Here is a simple static tree view

Checkboxes clicked: 0

NodeWrap

The NodeWrap property controls whether long text in tree nodes wraps to the next line instead of being clipped.

<TreeView NodeWrap="true">
    <Nodes>
        <TreeNode Text="Long text that wraps..." />
    </Nodes>
</TreeView>

Code:

<TreeView ID="SampleTreeView" ShowCheckBoxes="Root|Parent">
  <Nodes>
    <TreeNode Value="Home" NavigateUrl="/" Text="Home" Expanded="true">
      <TreeNode Value="Foo" Text="Foo"></TreeNode>
      <TreeNode Value="Bar" Text="Bar">...</TreeNode>
    </TreeNode>
  </Nodes>
</TreeView>