Add help window, adjust window sizes, add error handling for when Transit is down
[SnapShooter.git] / SnapShooter / HelpWindow.xaml
1 <Window x:Class="SnapShooter.HelpWindow"
2     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4     Title="Help" Height="320" Width="460">
5     <Grid>
6         <Button HorizontalAlignment="Right" Margin="0,0,12,12" Name="button1" VerticalAlignment="Bottom" Width="75" Height="30" Click="button1_Click">OK</Button>
7         <FlowDocumentScrollViewer Margin="12,12,12,48" Name="textBlock1">
8             <FlowDocument FontSize="10pt" FontFamily="sans-serif">
9                 <Paragraph FontSize="12pt" FontWeight="Bold" Margin="0">Operation</Paragraph>
10                 <Paragraph Margin="0,6pt,0,10pt">
11                     SnapShooter automatically grabs images off of the clipboard and uploads them
12                     for easy sharing with friends.
13                 </Paragraph>
14                 <Paragraph>
15                     While the "enable" box is checked, SnapShooter will check periodically
16                     for image data on the clipboard. When SnapShooter finds image data, it
17                     converts it to JPEG, then uploads it to
18                     <Hyperlink Click="TransitLink_Click">Transit</Hyperlink>. After uploading,
19                     SnapShooter copies the Transit URL to the clipboard so that you can immediately
20                     paste the result into a conversation, blog, or other communication.
21                 </Paragraph>
22                 <Paragraph>
23                     A log is kept in the SnapShooter window of recent uploads.  Each
24                     item shows a timestamp, a handy link to the Transit URL, and a button
25                     to copy the Transit URL to the clipboard.
26                 </Paragraph>
27                 <Paragraph FontSize="12pt" FontWeight="Bold" Margin="0">Notes</Paragraph>
28                 <List>
29                     <ListItem>
30                         <Paragraph>
31                             Be careful &#8211; while enabled, SnapShooter will upload and then destroy
32                             any image data on the clipboard. Other kinds of data will not be affected.
33                         </Paragraph>
34                     </ListItem>
35                     <ListItem>
36                         <Paragraph>
37                             SnapShooter does not (yet) save the output list on exit. Save any links
38                             you want to keep before you exit the program.
39                         </Paragraph>
40                     </ListItem>
41                 </List>
42             </FlowDocument>
43         </FlowDocumentScrollViewer>
44     </Grid>
45 </Window>