diff options
Diffstat (limited to 'platform/windows/gsview/Info.xaml.cs')
-rw-r--r-- | platform/windows/gsview/Info.xaml.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/platform/windows/gsview/Info.xaml.cs b/platform/windows/gsview/Info.xaml.cs new file mode 100644 index 00000000..8a544aa8 --- /dev/null +++ b/platform/windows/gsview/Info.xaml.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Shapes; + +namespace gsview +{ + /// <summary> + /// Interaction logic for Info.xaml + /// </summary> + public partial class Info : Window + { + public Info() + { + InitializeComponent(); + } + + private void OKClose(object sender, RoutedEventArgs e) + { + this.Close(); + } + } +} |