﻿<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <DockPanel>
    <Button
      Content="Top"
      DockPanel.Dock="Top"
      FontSize="24"/>
    <Button
      Content="Right"
      DockPanel.Dock="Right"
      FontSize="24"/>
    <Button
      Content="Bottom"
      DockPanel.Dock="Bottom"
      FontSize="24"/>
    <Button
      Content="Left"
      DockPanel.Dock="Left"
      FontSize="24"/>
    <Button
      Content="Fill"
      FontSize="24"/>
  </DockPanel>
</Page>
