예제 #1
0
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

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

            bootstrapper.Run();
        }
예제 #4
0
 public App()
 {
     var bootstrapper = new Bootstrapper();
     bootstrapper.Run();
 }
예제 #5
0
        public App()
        {
            var bootstrapper = new Bootstrapper();

            bootstrapper.Run();
        }