private void AppFrame_Navigating(object sender, NavigatingCancelEventArgs e) { HelperMethods.EnableBackButton(); HelperMethods.ShowSplitView(); if (AppConstants.activeUser == null) { userTextBlock.Text = "Login"; } else { userTextBlock.Text = AppConstants.activeUser.displayName; } }
/// <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) { #if DEBUG if (System.Diagnostics.Debugger.IsAttached) { //this.DebugSettings.EnableFrameRateCounter = true; } #endif AppShell shell = Window.Current.Content as AppShell; // Do not repeat app initialization when the Window already has content, // just ensure that the window is active if (shell == null) { // Create a Frame to act as the navigation context and navigate to the first page shell = new AppShell(); shell.AppFrame.NavigationFailed += OnNavigationFailed; if (e.PreviousExecutionState == ApplicationExecutionState.Terminated) { //TODO: Load state from previously suspended application } if (e.PrelaunchActivated) { // Don't handle prelaunch, just exit. Windows.ApplicationModel.Core.CoreApplication.Exit(); return; } // Place the frame in the current Window Window.Current.Content = shell; } if (shell.AppFrame.Content == null) { // When the navigation stack isn't restored navigate to the first page, // configuring the new page by passing required information as a navigation // parameter HelperMethods.EnableBackButton(); ApplicationViewTitleBar titleBar = ApplicationView.GetForCurrentView().TitleBar; titleBar.BackgroundColor = AppConstants.ThemeColor.Color; titleBar.ButtonBackgroundColor = AppConstants.ThemeColor.Color; titleBar.ForegroundColor = Windows.UI.Colors.White; shell.AppFrame.Navigate(typeof(LoadingPage), e.Arguments); } // Ensure the current window is active Window.Current.Activate(); }