Ver código fonte

backend : add save on clsing

Robert 3 anos atrás
pai
commit
9a2810eda8
1 arquivos alterados com 7 adições e 0 exclusões
  1. 7 0
      BellwetherBackend/MainWindow.xaml.cs

+ 7 - 0
BellwetherBackend/MainWindow.xaml.cs

@@ -26,6 +26,13 @@ namespace BellwetherBackend
         public MainWindow()
         {
             InitializeComponent();
+
+            Closing += MainWindow_Closing;
+        }
+
+        private void MainWindow_Closing(object sender, System.ComponentModel.CancelEventArgs e)
+        {
+            SaveCurrentPage();
         }
 
         private void RadioButton_Checked(object sender, RoutedEventArgs e)