I have an UltraTree control that selects a page to display in UltraTabControl. I will catch the event and find out which node in the tree I want to select. This works fine, only one (visual) thing is common: does the activated node not stand out in UltraTree?
This is what I do
pageTree.ActiveNode = pageTree.Nodes[tab.Key]; pageTree.ActiveNode.Selected = true;
In fact, I assumed that when I call select (), my highlighted node will also be highlighted (I mean the blue selection bar around it).
This is probably a very simple problem, but now I tried to apply some properties and methods, but still did not succeed.
thanks
source share