Ejemplo n.º 1
0
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     try
     {
         MainWindow app = new MainWindow();
         app.Show();
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }