コード例 #1
0
ファイル: App.xaml.cs プロジェクト: ralex1975/cpp-proto-net
 private void RunInReleaseMode()
 {
     this.DispatcherUnhandledException          += new System.Windows.Threading.DispatcherUnhandledExceptionEventHandler(App_DispatcherUnhandledException);
     AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
     try
     {
         PtBootstrapper bootstrapper = new PtBootstrapper();
         bootstrapper.Run();
     }
     catch (Exception ex)
     {
         HandleException(ex);
     }
 }
コード例 #2
0
ファイル: App.xaml.cs プロジェクト: ralex1975/cpp-proto-net
        private void RunInDebugMode()
        {
            PtBootstrapper bootstrapper = new PtBootstrapper();

            bootstrapper.Run();
        }