Hi guys!
I've got the following problem:
I have an ultra-tree bound to some hierarchiacal complex collection of objects.
The only thing that annoys me - I have a column headers everywhere. But I don't need these headers with the column-names. Dunno how to fix it. Help me please
Thanks in advance.
If you are assigning an UltraTreeColumnSet to the Override.ColumnSet property of each individual node, assign it to the nod.Nodes.Override.ColumnSet property instead.
If that is not the case, you can switch off column headers in general by setting the UltraTreeColumnSet's LabelPosition property to 'None':
private void ultraTree1_ColumnSetGenerated(object sender, ColumnSetGeneratedEventArgs e){ e.ColumnSet.LabelPosition = NodeLayoutLabelPosition.None;}