How to add nodes to DevExpress TreeList programmatically?

I want to add node at a specific index in DevExpress TreeList . I saw post number 1 and post number 2 , but could not get what I need. I only need code that takes the parent node number / id and adds a child element to it node.

I found this function and I think it will work

 treelist.AppendNode(object nodeinfo, int parentID); 

How to provide this node information?

+7
source share
1 answer

Please take a look at the documentation: How to create nodes in Unbound mode in code

Related Links: Unbound Mode

+8
source

All Articles