상속: Prism.Unity.UnityBootstrapper
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            Bootstrapper bs = new Bootstrapper();
            bs.Run();
        }
예제 #2
0
파일: App.cs 프로젝트: 4ux-nbIx/Prism
 public App()
 {
     Bootstrapper bs = new Bootstrapper();
     bs.Run(this);            
 }
예제 #3
0
        public App()
        {
            Bootstrapper bs = new Bootstrapper();

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

            bootstrapper.Run();
        }