예제 #1
0
파일: App.xaml.cs 프로젝트: TataDvd/Git
        private void Application_Startup(object sender, StartupEventArgs e)
        {
            //this.RootVisual = new Shell();
            var bootstrapper = new StockTraderRIBootstrapper();

            bootstrapper.Run();
        }
예제 #2
0
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);
            StockTraderRIBootstrapper bootstrapper = new StockTraderRIBootstrapper();

            bootstrapper.Run();
            this.ShutdownMode = ShutdownMode.OnMainWindowClose;
        }
예제 #3
0
파일: App.xaml.cs 프로젝트: eslahi/prism
 private static void RunInReleaseMode()
 {
     AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
     try
     {
         StockTraderRIBootstrapper bootstrapper = new StockTraderRIBootstrapper();
         bootstrapper.Run();
     }
     catch (Exception ex)
     {
         HandleException(ex);
     }
 }
예제 #4
0
 private static void RunInReleaseMode()
 {
     AppDomain.CurrentDomain.UnhandledException += AppDomainUnhandledException;
     try
     {
         StockTraderRIBootstrapper bootstrapper = new StockTraderRIBootstrapper();
         bootstrapper.Run();
     }
     catch (Exception ex)
     {
         HandleException(ex);
     }
 }
예제 #5
0
파일: App.xaml.cs 프로젝트: eslahi/prism
 private static void RunInDebugMode()
 {
     StockTraderRIBootstrapper bootstrapper = new StockTraderRIBootstrapper();
     bootstrapper.Run();
 }
예제 #6
0
        private static void RunInDebugMode()
        {
            StockTraderRIBootstrapper bootstrapper = new StockTraderRIBootstrapper();

            bootstrapper.Run();
        }
예제 #7
0
파일: App.xaml.cs 프로젝트: eslahi/prism
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     //this.RootVisual = new Shell();
     var bootstrapper = new StockTraderRIBootstrapper();
     bootstrapper.Run();
 }