﻿<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <StackPanel Orientation="Vertical">
    <Button
      HorizontalAlignment="Center"
      Content="Center"
      FontSize="24"/>
    <Button
      HorizontalAlignment="Left"
      Content="Left"
      FontSize="24"/>
    <Button
      HorizontalAlignment="Right"
      Content="Right"
      FontSize="24"/>
    <Button
      HorizontalAlignment="Stretch"
      Content="Stretch"
      FontSize="24"/>
  </StackPanel>
</Page>
