﻿<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <StackPanel Orientation="Horizontal">
    <Button
      VerticalAlignment="Center"
      Content="Center"
      FontSize="24"/>
    <Button
      VerticalAlignment="Top"
      Content="Top"
      FontSize="24"/>
    <Button
      VerticalAlignment="Bottom"
      Content="Bottom"
      FontSize="24"/>
    <Button
      VerticalAlignment="Stretch"
      Content="Stretch"
      FontSize="24"/>
  </StackPanel>
</Page>
