Not sure if this is a bug, but doing this:
RadTreeNode type = parent.Nodes.Add(
"DisplayedText"
);
type.Value = 1;
does not work, but doing this does:
RadTreeNode type =
new
RadTreeNode(
"DisplayedTest"
);
type.Value = 1;
parent.Nodes.Add(type);
Why do they function differently?