what is TreeControl's selection 's sort.
for example ,my tree 's nodes are a,b,c,d,e,f,g
selected order is 'e','g','f','a' (ctrl+mouse)
in the section nodes ,the order isn't 'e','g','f','a'. if i want the order is 'e','g','f','a',what can i do?
1.Re: TreeControl's selection Jul 24, 2008 1:36 AM
TreeControl does produce SelectionChanged events.
You could potentially subclass TreeControl, or just add an event handler, and keep an array of TreeNodes, updating it each time from the changes in TreeControl.selection (pull missing nodes from the array, add new selections at the end).