Skip to main content
A newer version of this page is available. .

TreeListNode Class

A node displayed within a TreeListView.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.2.dll

Declaration

public class TreeListNode :
    TreeListNodeBase,
    INotifyPropertyChanged

The following members return TreeListNode objects:

Show 53 links

Remarks

Nodes correspond to records in a data source and are specified by TreeListNode objects.

Node

Nodes are stored as nested collections because the TreeListView displays data in a tree. The collection of root level nodes can be accessed via the TreeListView.Nodes property. Each node has its own collection of child nodes, available via the TreeListNode.Nodes property. These child nodes have their own children, etc.

In bound mode, nodes are created automatically for every record in a data source. In an unbound mode, you need to create nodes manually.

To learn more, see Nodes Overview.

The following code snippets (auto-collected from DevExpress Examples) contain references to the TreeListNode class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Inheritance

See Also