コード例 #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();
 }