The Text and Value properties of the RadTreeNode are accessing the same thing.
For example:
Is this how it is meant to work?
For example:
RadTreeNode node =
new
RadTreeNode();
node.Value =
new
RadTextBox();
// Text is changed to "Telerik.WinControls.UI.RadTextBox"
node.Text =
"Open TextBox"
;
// Value is changed to "Open TextBox"
Is this how it is meant to work?