Add help window, adjust window sizes, add error handling for when Transit is down
[SnapShooter.git] / SnapShooter / HelpWindow.xaml.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Windows;
6 using System.Windows.Controls;
7 using System.Windows.Data;
8 using System.Windows.Documents;
9 using System.Windows.Input;
10 using System.Windows.Media;
11 using System.Windows.Media.Imaging;
12 using System.Windows.Shapes;
13
14 namespace SnapShooter {
15     /// <summary>
16     /// Interaction logic for HelpWindow.xaml
17     /// </summary>
18     public partial class HelpWindow : Window {
19         public HelpWindow() {
20             InitializeComponent();
21         }
22
23         private void button1_Click(object sender, RoutedEventArgs e) {
24             Close();
25         }
26
27         private void TransitLink_Click(object sender, RoutedEventArgs e) {
28             System.Diagnostics.Process.Start("http://dominionofawesome.com/transit/");
29         }
30     }
31 }