상속: Prism.Unity.UnityBootstrapper
예제 #1
0
        protected override void OnStartup(StartupEventArgs e)
        {
            QuickStartBootstrapper bootstrapper = new QuickStartBootstrapper();

            bootstrapper.Run();
        }
예제 #2
0
파일: App.xaml.cs 프로젝트: eslahi/prism
 private static void Application_Startup(object sender, StartupEventArgs e)
 {
     QuickStartBootstrapper bootstrapper = new QuickStartBootstrapper();
     bootstrapper.Run(true);
 }
예제 #3
0
 protected override void OnStartup(StartupEventArgs e)
 {
     QuickStartBootstrapper bootstrapper = new QuickStartBootstrapper();
     bootstrapper.Run();
 }
예제 #4
0
        private static void Application_Startup(object sender, StartupEventArgs e)
        {
            QuickStartBootstrapper bootstrapper = new QuickStartBootstrapper();

            bootstrapper.Run(true);
        }