R
rlueneberg
I am want to change the color of a TreeView node but on VS2005 does
not present any property for it. I saw that windows forms treeview
controls has that. Where is it?
foreach (TreeNode t in TreeView1.Nodes)
{
if (CurrentURL.IndexOf(t.NavigateUrl) > 1)
{
//t.BackColor = Color.Yellow;
t.Expand();
}
}
Thanks
Rod
not present any property for it. I saw that windows forms treeview
controls has that. Where is it?
foreach (TreeNode t in TreeView1.Nodes)
{
if (CurrentURL.IndexOf(t.NavigateUrl) > 1)
{
//t.BackColor = Color.Yellow;
t.Expand();
}
}
Thanks
Rod