Get rid of .suo file, add .gitignore
[SnapShooter.git] / SnapShooter / SnapShotItem.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.Navigation;
13 using System.Windows.Shapes;
14
15 namespace SnapShooter {
16     /// <summary>
17     /// Interaction logic for SnapShotItem.xaml
18     /// </summary>
19     public partial class SnapShotItem : UserControl {
20         public string TransitURL;
21
22         public SnapShotItem() {
23             InitializeComponent();
24         }
25
26         private void UserControl_Loaded(object sender, RoutedEventArgs e) {
27             DateTimeLabel.Text = DateTime.Now.ToString();
28         }
29
30         private void Hyperlink_Click(object sender, RoutedEventArgs e) {
31             System.Diagnostics.Process.Start(TransitURL);
32         }
33
34         private void Button_Click(object sender, RoutedEventArgs e) {
35             Clipboard.SetText(TransitURL);
36         }
37     }
38 }