Reputation: 165
I want to change the back color of the selected node in tree view. How do I do that?
Upvotes: 0
Views: 3237
Reputation: 247
treeView1.SelectedNodeStyle.BackColor = System.Drawing.Color.Silver;
Upvotes: 3
Reputation: 9978
Apply some css on that control.
Following might help:
Upvotes: -1