Add more detailed and useful listing of output
[SnapShooter.git] / SnapShooter / MainWindow.xaml
index 4c1bc1c..da80cf1 100644 (file)
@@ -4,6 +4,16 @@
     Title="SnapShooter" Height="300" Width="600"
     Loaded="Window_Loaded">
     <Grid>
-        <ListBox Name="SnapShots" />
+        <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>Help</Hyperlink>
+            </TextBlock>
+        </StackPanel>
+        <ListBox Name="SnapShots" Grid.Row="1" HorizontalContentAlignment="Stretch" />
     </Grid>
 </Window>