﻿<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Grid ShowGridLines="True">
    <Grid.ColumnDefinitions>
      <ColumnDefinition Width="1in"/>
      <ColumnDefinition Width="3*"/>
      <ColumnDefinition/>
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
      <RowDefinition Height="1in"/>
      <RowDefinition Height="3*"/>
      <RowDefinition/>
    </Grid.RowDefinitions>
    <Rectangle
      Grid.Column="0"
      Grid.Row="0"
      Fill="Red"/>
    <Rectangle
      Grid.Column="1"
      Grid.Row="0"
      Fill="Yellow"/>
    <Rectangle
      Grid.Column="2"
      Grid.Row="0"
      Fill="Green"/>
    <Rectangle
      Grid.Column="0"
      Grid.Row="1"
      Grid.RowSpan="2"
      Fill="Pink"/>
    <Rectangle
      Grid.Column="1"
      Grid.ColumnSpan="2"
      Grid.Row="1"
      Fill="Silver"/>
    <Ellipse
      Grid.Column="2"
      Grid.Row="1"
      Fill="Blue"/>
    <GridSplitter
      Height="2"
      Grid.ColumnSpan="3"
      Grid.Row="1"
      HorizontalAlignment="Stretch"
      VerticalAlignment="Top"/>
  </Grid>
</Page>
