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

            var bootstrapper = new Bootstrapper();
            bootstrapper.Run();
        }
コード例 #2
0
ファイル: Startup.cs プロジェクト: LogoFX/tools
 public Startup(IObjectContainer objectContainer)
 {
     var containerAdapter = new ObjectContainerAdapter(objectContainer);
     var bootstrapper =
         new Bootstrapper(containerAdapter)
         .Use(new RegisterCompositionModulesMiddleware<Bootstrapper>());            
     bootstrapper.Initialize();            
 }                       
コード例 #3
0
ファイル: App.xaml.cs プロジェクト: jfromaniello/prismcontrib
 public App()
 {
     Bootstrapper bootStrapper = new Bootstrapper();
     bootStrapper.Run();
 }