Inheritance: Microsoft.Practices.Prism.UnityExtensions.UnityBootstrapper
Ejemplo n.º 1
0
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            var bootstrapper = new Bootstrapper();
            bootstrapper.Run();
        }
Ejemplo n.º 2
0
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     var bootstrapper = new Bootstrapper();
     bootstrapper.Run();
 }