App.xaml.cs 394 B

1234567891011121314151617181920
  1. using System.Windows;
  2. namespace Editor
  3. {
  4. public partial class App: Application
  5. {
  6. protected override void OnStartup(StartupEventArgs e)
  7. {
  8. base.OnStartup(e);
  9. RunInDebugMode();
  10. this.ShutdownMode = ShutdownMode.OnMainWindowClose;
  11. }
  12. private static void RunInDebugMode()
  13. {
  14. Bootstrapper bootstrapper = new Bootstrapper();
  15. bootstrapper.Run();
  16. }
  17. }
  18. }