How to set the text of treelistlockupedit when I click on node?

Viewed 14

I create a treelist inside treelistlockupedit, but when I click on a node from this list, the text of treelistlockupedit doesn't change.

This is the creation of my treelist:

this.treeList1.AppendNode(new object[] { "A" }, -1);
this.treeList1.AppendNode(new object[] { "B" }, -1);
this.treeList1.AppendNode(new object[] { "C" }, -1);
this.treeList1.AppendNode(new object[] { "D" }, -1);
this.treeList1.AppendNode(new object[] { "E" }, -1);
this.treeList1.AppendNode(new object[] { "EE" }, 4);

How can I set the text of treelistlockupedit when I click on any node?

0 Answers
Related