///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // METHODS ////////////////////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// private async void HyperlinkButtonSettingsAboutLicenses_Click(object sender, RoutedEventArgs e) { await RunOnUIThreadAsync(CoreDispatcherPriority.Normal, () => { ButtonDialogLicensesHeadingBack.IsEnabled = false; if (FrameDialogLicenses.Content == null) { FrameDialogLicenses.Navigate(typeof(LicensesView), new SuppressNavigationTransitionInfo()); } if (FrameDialogLicenses.Content.GetType() == typeof(LicenseDetailView)) { FrameDialogLicenses.GoBack(new SuppressNavigationTransitionInfo()); } }); }
private void ContentDialogRoot_Loaded(object sender, RoutedEventArgs e) { FrameDialogLicenses.Navigate(typeof(LicensesView), new SuppressNavigationTransitionInfo()); }