summaryrefslogtreecommitdiff
path: root/platform/windows/gsview/Password.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'platform/windows/gsview/Password.xaml.cs')
-rw-r--r--platform/windows/gsview/Password.xaml.cs35
1 files changed, 35 insertions, 0 deletions
diff --git a/platform/windows/gsview/Password.xaml.cs b/platform/windows/gsview/Password.xaml.cs
new file mode 100644
index 00000000..5c45200e
--- /dev/null
+++ b/platform/windows/gsview/Password.xaml.cs
@@ -0,0 +1,35 @@
+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 Password.xaml
+ /// </summary>
+ public partial class Password : Window
+ {
+ /* Callback to Main */
+ internal delegate void PassCallBackMain(object gsObject);
+ internal event PassCallBackMain PassUpdateMain;
+
+ public Password()
+ {
+ InitializeComponent();
+ }
+
+ private void PasswordCheck(object sender, RoutedEventArgs e)
+ {
+ PassUpdateMain(this);
+ }
+ }
+}