示例#1
0
文件: App.xaml.cs 项目: eslahi/prism
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            Bootstrapper bootStrapper = new Bootstrapper();
            bootStrapper.Run();
        }
示例#2
0
文件: App.xaml.cs 项目: eslahi/prism
 public App()
 {
     Bootstrapper bootStrapper = new Bootstrapper();
     bootStrapper.Run();
 }
示例#3
0
文件: App.xaml.cs 项目: eslahi/prism
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     Bootstrapper bootstrapper = new Bootstrapper();
     bootstrapper.Run();
 }