Reputation: 5
I have an issue using C#'s TreeView.
But if I put a text using someNumber(s)[space]someWord like "1 Hello World" or "1323 Hello World", in the tree view is showed like "HelloWorld 1" or "Hello World 1323".
Image 1, command Line (the toolTip is over "node.Text")
(sorry, I'm a newbie, can't post pics)
I've tried even sending the commandline from de immediate window, like node.Text="123 Hello World" and the node still shows me "Hello World 123".
I'm using VS2010 in W7.
Any idea/s? i'm driving nuts...
Thanks in advance.
Upvotes: 0
Views: 141
Reputation: 534
Is your FlowDirection set to RightToLeft? Try setting it to LeftToRight.
Upvotes: 2