Hi,
I have an UltraWinGrid with 2 bands. First band has one column, second band 4 columns. In the moment, the first column of the second band has the same width as the column of band 1. Is it possible to put all columns of band 2 under the column of band 1?
Thanks
Hansjörg Wintermantel
First of all, set AllowColSizing to Free. That will allow the column widths of band 2 to be independent of the column widths of band 1:
ultraGrid1.DisplayLayout.Override.AllowColSizing = AllowColSizing.Free;
Then you can size the columns in band 2 any way you want.