The TreeNode of TreeView in web version has a "Value" property that can be bound from XML files. Our colleagues cannot find the corresponding one in WinForm TreeView.
Do you suggest any property as a substitute (that can be bound from XML files)?
Thanks a lot.
Ricky.
2 Answers, 1 is accepted
0
Jordan
Telerik team
answered on 08 Aug 2008, 09:16 AM
Hi Ricky,
The Tag property of nodes can be used to serialize additional information in XML.
For example the code bellow:
this.radTreeView1.Nodes[0].Tag = 1;
this.radTreeView1.Nodes[0].Nodes[0].Tag = "String in tag";
SaveFileDialog saveFileDialog = new SaveFileDialog();
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Stefan
Telerik team
answered on 21 Mar 2011, 10:42 AM
Hello Ricky,
Please note that in Q1 2011 we have introduced a major upgrade of RadTreeView control, which is now virtualized and fully customizable. Feel free to download the latest release and try it out. For more information on our latest release refer to this blog post.