Hi everybody,
I have a little problem with my treeview.
I populate my treeview on demand, when I open a node I perform a check and if this if true I set the forecolor of the node to red in the following way
I have a little problem with my treeview.
I populate my treeview on demand, when I open a node I perform a check and if this if true I set the forecolor of the node to red in the following way
RadTreeNode
node = new RadTreeNode();
node.ForeColor = System.Drawing.
Color.Red;
e.Node.Nodes.Add(node);
but as soon as I click on a node or perform an action on my contest menu the forecolor return to black.
Can somebody explain me what I'm doing wrong? or if it isn't possible to set a permanetly another forecolor?
Thank you very much
Raphael