Ejemplo n.º 1
0
        /// <summary>
        /// Raises the <see cref="E:System.Windows.Application.Startup"/> event.
        /// </summary>
        /// <param name="e">A <see cref="T:System.Windows.StartupEventArgs"/> that contains the event data.</param>
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            var bootStrapper = new JamSoftBootstrapper();
            bootStrapper.Run();
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Raises the <see cref="E:System.Windows.Application.Startup"/> event.
        /// </summary>
        /// <param name="e">A <see cref="T:System.Windows.StartupEventArgs"/> that contains the event data.</param>
        protected override void OnStartup(StartupEventArgs e)
        {
            base.OnStartup(e);

            var bootStrapper = new JamSoftBootstrapper();

            bootStrapper.Run();
        }
Ejemplo n.º 3
0
 /// <summary>Initializes a new instance of the <see cref="App"/> class.</summary>
 public App()
 {
     var bootStrapper = new JamSoftBootstrapper();
     bootStrapper.Run();
 }