Hi I've been searching for a solution with no success ...
I want a grid that resembles:
+-------+----------------+ | | | +-------+----------------+ | | | | | | +-------+----------------+ | | | +-------+----------------+
Thank you in advance!
To enable cell merging, set the allowMerging property to indicate what part or parts of the grid you want to merge, and set the allowMerging property on specific rows and columns to true. Once you do that, the grid will merges cells that have the same content, grouping the data visually.
CSS grid-column property.
It looks like a 3-row, 2-column Grid with proportional sizes:
<Grid> <Grid.RowDefinitions> <RowDefinition Height="*" /> <RowDefinition Height="2*" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> <ColumnDefinition Width="3*" /> </Grid.ColumnDefinitions> </Grid>
The 5 cells would be like:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With