Fix installer script
[SnapShooter.git] / SnapShooter / MainWindow.xaml
1 <Window x:Class="SnapShooter.MainWindow"
2     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4     Title="SnapShooter" Height="300" Width="600"
5     Loaded="Window_Loaded">
6     <Grid>
7         <Grid.RowDefinitions>
8             <RowDefinition Height="Auto" />
9             <RowDefinition Height="*" />
10         </Grid.RowDefinitions>
11         <StackPanel Name="Menu" HorizontalAlignment="Right" Orientation="Horizontal">
12             <CheckBox Margin="4" Name="Enabled" Checked="Enabled_Checked" Unchecked="Enabled_Unchecked" IsChecked="True">Enabled</CheckBox>
13             <TextBlock Margin="4">
14                 <Hyperlink>Help</Hyperlink>
15             </TextBlock>
16         </StackPanel>
17         <ListBox Name="SnapShots" Grid.Row="1" HorizontalContentAlignment="Stretch" />
18     </Grid>
19 </Window>