System.Web.UI.WebControls Namespace
.NET Framework version 2.0
Represents a node in the TreeView control.
Visibility |
Name |
Value Type |
Accessibility |
public |
Checked
|
Boolean |
[ Get , Set ] |
public |
ChildNodes
|
TreeNodeCollection |
[ Get ] |
public |
DataBound
|
Boolean |
[ Get ] |
public |
DataItem
|
Object |
[ Get ] |
public |
DataPath
|
String |
[ Get ] |
public |
Depth
|
Int32 |
[ Get ] |
public |
Expanded
|
Nullable`1 |
[ Get , Set ] |
public |
ImageToolTip
|
String |
[ Get , Set ] |
public |
ImageUrl
|
String |
[ Get , Set ] |
public |
NavigateUrl
|
String |
[ Get , Set ] |
public |
Parent
|
TreeNode |
[ Get ] |
public |
PopulateOnDemand
|
Boolean |
[ Get , Set ] |
public |
SelectAction
|
TreeNodeSelectAction |
[ Get , Set ] |
public |
Selected
|
Boolean |
[ Get , Set ] |
public |
ShowCheckBox
|
Nullable`1 |
[ Get , Set ] |
public |
Target
|
String |
[ Get , Set ] |
public |
Text
|
String |
[ Get , Set ] |
public |
ToolTip
|
String |
[ Get , Set ] |
public |
Value
|
String |
[ Get , Set ] |
public |
ValuePath
|
String |
[ Get ] |
|
The TreeView control is made up of nodes. Each entry in the tree is called a node and is represented by a TreeNode object. A node that contains other nodes is called a parent node. A node that is contained by another node is called a child node. A node that has no child nodes is called a leaf node. A node that is not contained by any other node but is the ancestor to all the other nodes is the root node. A node can be both a parent and a child, but root, parent, and leaf nodes are mutually exclusive. Several visual and behavioral properties of nodes are determined by whether a node is a root, parent, or leaf node.
Although a typical tree has only one root node, the TreeView control allows you to add multiple root nodes to your tree structure. This is useful when you want to display item listings without displaying a single main root node, as in a list of product categories.
A node primarily stores data in two properties, the Text property and the Value property. The value of the Text property is displayed in the TreeView control, and the Value property is used to store any additional data about the node, such as data used for handling postback events. A node also stores the path from the node to its root node in the ValuePath property. The ValuePath property indicates the node's position relative to the root node.
A TreeNode object is made up of the following four user interface ( UI ) elements, which can be customized or hidden:
- An expansion node indicator icon used to show whether the node is expanded, collapsed, or non-expandable.
- An optional check box associated with the node.
- An optional node image.
- The node text.
You can specify a custom image for the expandable, collapsible, and non-expandable node indicators by setting the ExpandImageUrl, CollapseImageUrl, and NoExpandImageUrl properties of the TreeView class. The expansion node indicator icons can even be hidden entirely by setting the ShowExpandCollapse property of the TreeView class to false.
To display a check box next to a node, set the ShowCheckBoxes property of the TreeView class. When the ShowCheckBoxes property is set to a value other than TreeNodeType.Node, check boxes are displayed next to the specified node type. You can selectively override the check box of an individual node by setting the node's ShowCheckBox property. When a check box is displayed, use the Checked property to determine whether the check box is selected.
You can display an image in a node by setting the ImageUrl property. This image is displayed next to the node text.
The text of a node in the TreeView control can be in one of two modes: selection mode or navigation mode. By default, a node is in selection mode. To put a node into navigation mode, set the node's NavigateUrl property to a value other than an empty string ( "" ). To put a node into selection mode, set the node's NavigateUrl property to an empty string.
By default, clicking a node that is in selection mode posts the page back to the server and raises the SelectedNodeChanged event. You can optionally specify a different event to raise by setting the node's SelectAction property. For more information, see SelectAction. To determine which node was clicked in selection mode, use the SelectedNode property of the TreeView control.
When a node is in navigation mode, all selection events are disabled for that node. Clicking the node in navigation mode directs the user to the specified URL. You can optionally set the Target property to specify the window or frame in which to display the linked content.
The TreeNode class contains several properties that are used to store the state of the node. Use the Selected property to determine whether a node is selected. To determine whether the node is expanded, use the Expanded property. The DataBound property is used to determine whether a node is bound to data. When a node is bound to data, you can access the underlying data item by using the DataItem property.
The class provides several properties that help to determine the position of a node relative to other nodes in the tree. Use the Depth property to determine the depth of the node. You can get the delimited list of nodes from the current node to its root node by using the ValuePath property. To determine the node's parent node, use the Parent property. Child nodes are accessed using the ChildNodes collection.
There are cases where it is not practical to statically predefine the tree structure due to data size or custom content that depends on user input. For these cases, the TreeView control supports dynamic node population. A node can be populated at run time when it is expanded. For more information on dynamic node population, see the PopulateOnDemand property.
For a list of initial property values for an instance of TreeNode, see the TreeNode constructor.
TreeView Class