Inheritance: Microsoft.Practices.Prism.UnityExtensions.UnityBootstrapper
コード例 #1
0
ファイル: App.xaml.cs プロジェクト: Slesa/Playground
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            var bootstrapper = new Bootstrapper();
            bootstrapper.Run();
        }
コード例 #2
0
ファイル: App.xaml.cs プロジェクト: Slesa/Playground
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     var bootstrapper = new Bootstrapper();
     bootstrapper.Run();
 }