Hello,

I have a question about creating a dynamic grid layout.
The grid should have the following:
- a rowheader(12 columns). (0)
- a detail row with also 12 columns (contains the data). (1)
- a second row with 3 columns where the first column is empty, the second
column has a description in it like the rowheader above and a third column
with the value of this row. (2)
- a third row which has the same layout as the second row. (3)

row (1), (2) and (3) should be created multiple times depending on the data.
Is this possible to create this within C#.
At the moment I draw this "grid" with seperate labels. I do this when I
retrive the data for it. The data can change when clicking an other row in a
different grid.
My "label-grid" works fine but it is to slow when redrawing it when
selecting other data because the labels must be removed from the form and
created again within the code.
I have also a screenprint how it must look but can not attach this.

Thanks