<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="60"/>
<RowDefinition Height="40"/>
<RowDefinition Height="40"/>
<RowDefinition Height="40"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="60"/>
<ColumnDefinition Width="60"/>
<ColumnDefinition Width="60"/>
<ColumnDefinition Width="60"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Label Content="Grid Layout Demo"
FontSize="15" FontWeight="Bold"
Foreground="Blue"
Grid.Column="0" Grid.Row="0" Grid.ColumnSpan="5"/>
<Label Content="Label1" FontSize="15" FontWeight="Bold"
Grid.Column="0" Grid.Row="1"/>
<Label Content="Label2" FontSize="15" FontWeight="Bold"
Grid.Column="1" Grid.Row="2"/>
<Label Content="Label3" FontSize="15" FontWeight="Bold"
Grid.Column="2" Grid.Row="3"/>
<Label Content="Label4" FontSize="15" FontWeight="Bold"
Grid.Column="3" Grid.Row="3"/>
</Grid>