I need a help about some code. how can i split a row into two columns.My code is under this text.
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition Height="50"/>
<RowDefinition Height="50"/>
<RowDefinition Height="50"/>
<RowDefinition Height="30"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0">
so how can i split row 0 into two columns, thanks
You just need to add
and then to put your StackPanel in the first row and the first column
and modify the span if you want a control to span over multiple cells