protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            // The boostrapper will create the Shell instance, so the App.xaml does not have a StartupUri.
            var bootstrapper = new QuickStartBootstrapper();
            bootstrapper.Run();
        }
Example #2
0
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     // The boostrapper will create the Shell instance, so we don't need to set the RootVisual
     QuickStartBootstrapper bootstrapper = new QuickStartBootstrapper();
     bootstrapper.Run();
 }