Hello,
I would like to layout a grid with several bands like the one below; the key thing is that the columns of all levels are aligned and that also the row expand indicators are shown. I have tried to set the Band.Indent=0 but then row expand indicators are not shown.
Thanks
Hi,
You might want to consider using UltraTree, instead and setting the Style to OutlookExpress. That will more closely resemble what you have here.
To do this in the WinGrid, Indent is not really what you want, because Indent is horizontal spacing in front of the row. What you want is to remove the spacing between rows.
grid.DisplayLayout.InterBandSpacing = 0;
There's no easy way to put the expansion indicators inside the row like you have here, but you could do it using a CreationFilter.
Thanks Mike,
If I would use a tree it is possible to make some cells editable?