ParentNodeStyle in a TreeView : TreeView « Asp Control « ASP.Net






ParentNodeStyle in a TreeView


<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
    <form id="form1" runat="server">
    <asp:TreeView ID="TreeView1" 
                 runat="server" 
                 DataSourceID="XmlDataSource1" 
                 SelectedNodeStyle-ForeColor="Green"
                 SelectedNodeStyle-VerticalPadding="0"
                 ShowCheckBoxes="Parent"
                 ForeColor="Black">
    <ParentNodeStyle Font-Bold="True" 
                     ForeColor="Black" 
                     BackColor="SkyBlue" />
            <SelectedNodeStyle Font-Underline="True" 
                               HorizontalPadding="0px" 
                               VerticalPadding="0px" 
                               BackColor="#C04000" />
            <NodeStyle Font-Names="Verdana" 
                       HorizontalPadding="5px"
                       NodeSpacing="0px" 
                       VerticalPadding="0px"/>
               <DataBindings>
                <asp:TreeNodeBinding DataMember="Address" ValueField="Value" />
                <asp:TreeNodeBinding DataMember="Employee" ValueField="Name" />
            </DataBindings>
        <LeafNodeStyle BackColor="#FFE0C0" />
    </asp:TreeView>
        <asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="~/Data.xml">
        </asp:XmlDataSource>
    </form>
</body>
</html>

File: Data.xml

<?xml version="1.0" encoding="utf-8" ?>
<Employee_Addresses>
  <Employee Name="A">
    <Address Value="USA">
    </Address>
  </Employee>
  <Employee Name="B">
    <Address Value="USA">
    </Address>
  </Employee>
</Employee_Addresses>

 








Related examples in the same category

1.A basic TreeView control
2.A TreeView control with the MSDN style applied to it
3.Binding a TreeView control to the Data.xml file
4.Add check boxes to leaf nodes (C#)
5.Add check boxes to leaf nodes (VB)
6.Applying custom images to the TreeView control
7.Expanding and collapsing the nodes of the TreeView control programmatically (C#)
8.Expanding and collapsing the nodes of the TreeView control programmatically (VB)
9.Expanding specific nodes programmatically
10.Expanding nodes programmatically using the Expanded property
11.Displaying database data with a TreeView control.
12.Using Populate On Demand and AJAX
13.Formatting the TreeView Control
14.Using Styles with the TreeView control.
15.Applying styles to different TreeView node levels.
16.Adding nodes programmatically to the TreeView control (C#)
17.Adding nodes programmatically to the TreeView control (VB)
18.Custom TreeView Control
19.Database tree
20.TreeView Populate On Demand
21.Test TreeView
22.TreeView DataBindings
23.Dynamic tree view
24.DirectoryInfo TreeView