Beispiel #1
0
 public void OperatorWindowChangeScreen(string dstControl)
 {
     NirIdentifier.MainWindow temp = App.Current.MainWindow as NirIdentifier.MainWindow;
     if (temp != null)
     {
         temp.ChangeScreen(dstControl);
     }
 }
 private void btnExit_Click(object sender, RoutedEventArgs e)
 {
     NirIdentifier.MainWindow temp = App.Current.MainWindow as NirIdentifier.MainWindow;
     if (temp != null)
     {
         temp.ChangeScreen("Correction", "MainSelectPanel");
     }
 }