/// <summary>
        /// Invoked when the application is launched normally by the end user.  Other entry points
        /// will be used such as when the application is launched to open a specific file.
        /// </summary>
        /// <param name="e">Details about the launch request and process.</param>
        protected override void OnLaunched(LaunchActivatedEventArgs e)
        {
            var initalizer = new Initalizer(e.SplashScreen);

            Window.Current.Content = initalizer;
            Window.Current.Activate();
        }
 /// <summary>
 /// Invoked when the application is launched normally by the end user.  Other entry points
 /// will be used such as when the application is launched to open a specific file.
 /// </summary>
 /// <param name="e">Details about the launch request and process.</param>
 protected override void OnLaunched(LaunchActivatedEventArgs e)
 {
     var initalizer = new Initalizer(e.SplashScreen);
     Window.Current.Content = initalizer;
     Window.Current.Activate();
 }