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
        private void Application_Startup(object sender, StartupEventArgs e)
        {
            var bootstrapper = new Bootstrapper(new Injector());

            bootstrapper.Run();
        }
示例#4
0
文件: App.xaml.cs 项目: eslahi/prism
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     Bootstrapper bootstrapper = new Bootstrapper();
     bootstrapper.Run();
 }
示例#5
0
文件: App.cs 项目: happygod-lyc/Prism
        public App()
        {
            Bootstrapper bs = new Bootstrapper();

            bs.Run(this);
        }