BikeInCity.App.InitializePhoneApplication C# (CSharp) Method

InitializePhoneApplication() private method

private InitializePhoneApplication ( ) : void
return void
        private void InitializePhoneApplication()
        {
            if (phoneApplicationInitialized)
            return;

              // Create the frame but don't set it as RootVisual yet; this allows the splash
              // screen to remain active until the application is ready to render.
              RootFrame = new PhoneApplicationFrame();
              RootFrame.Navigated += CompleteInitializePhoneApplication;

              // Handle navigation failures
              RootFrame.NavigationFailed += RootFrame_NavigationFailed;

              // Ensure we don't initialize again
              phoneApplicationInitialized = true;
        }