/SnapShooter/MainWindow.xaml
<Window x:Class="SnapShooter.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="SnapShooter" Height="300" Width="350"
    Loaded="Window_Loaded">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>
        <StackPanel Name="Menu" HorizontalAlignment="Right" Orientation="Horizontal">
            <CheckBox Margin="4" Name="Enabled" Checked="Enabled_Checked" Unchecked="Enabled_Unchecked" IsChecked="True">Enabled</CheckBox>
            <TextBlock Margin="4">
                <Hyperlink Click="Help_Click">Help</Hyperlink>
            </TextBlock>
        </StackPanel>
        <ListBox Name="SnapShots" Grid.Row="1" HorizontalContentAlignment="Stretch" />
    </Grid>
</Window>