コード例 #1
0
        private void MainView_NavigationView_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
        {
            Frame rootFrame = Window.Current.Content as Frame;

            rootFrame.Navigate(typeof(SplashScreen));
        }
コード例 #2
0
ファイル: NavigationRootManager.cs プロジェクト: hevey/maui
 void OnBackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     _mauiContext.GetNativeWindow().GetWindow()?.BackButtonClicked();
 }
コード例 #3
0
ファイル: MainPage.xaml.cs プロジェクト: jharrilim/CRust-IDE
 private void NavView_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
 }
コード例 #4
0
 private void navRoot_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     Frame.GoBack();
 }
コード例 #5
0
 private void NavView_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     ContentFrame.GoBack();
 }
コード例 #6
0
ファイル: MainPage.xaml.cs プロジェクト: kjhx-hw/cirrus
 private void NavView_OnBackRequested(Windows.UI.Xaml.Controls.NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     if (ContentFrame.CanGoBack)
     {
         ContentFrame.GoBack();
     }
 }
コード例 #7
0
 private void NavView_BackRequested(NavigationView sender,
                                    NavigationViewBackRequestedEventArgs args)
 {
     BackButton_Click();
 }
コード例 #8
0
 /// <summary>
 /// Handles the Loaded event of the RootNavigationView control.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="args"></param>
 private void RootNavigationViewBackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args) =>
 OnBackRequested();
コード例 #9
0
 private void BasicNavigation_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     contentFrame.GoBack();
 }
コード例 #10
0
        private void SettingsPane_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
        {
            Frame rootFrame = Window.Current.Content as Frame;

            rootFrame.GoBack();
        }
コード例 #11
0
 private void TopLevelNav_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     TopLevelNavHandler.OnBackRequested(this);
 }
コード例 #12
0
 public void BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     _navigationService.GoBack();
 }
コード例 #13
0
 /// <summary>
 /// Event handler, which lets the user go back to the previous xaml page.
 /// </summary>
 private void NavBarSide_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     _ = App.TryGoBack();
 }
コード例 #14
0
 private void NavView_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     ContentFrame.Navigate(typeof(HomePage));
 }
コード例 #15
0
 private void On_BackRequested(NavigationView nav, NavigationViewBackRequestedEventArgs e)
 {
     this.Frame.GoBack();
 }
コード例 #16
0
 private void NavigationView_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     NavigateToConcertsPage();
 }
コード例 #17
0
 private void NaviMenu_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     NavigateBack();
 }
コード例 #18
0
 private void NavigationView_OnBackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     App.NavigationManager.GoBack(PageIndex.MainStackIdentifier);
 }
コード例 #19
0
ファイル: MainPage.xaml.cs プロジェクト: netcharm/StringCodec
 private void NvMain_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     OnBackRequested();
 }
コード例 #20
0
 private void Nav_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     this.Frame.GoBack();
 }
コード例 #21
0
 private void Navigation_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     ContentFrame.GoBack(new DrillInNavigationTransitionInfo());
     Navigation.IsBackEnabled = false;
 }
コード例 #22
0
ファイル: Shell.xaml.cs プロジェクト: unoplatform/Uno.Ch9
 private void OnNavigationViewBackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     TryHandleBackRequested();
 }
コード例 #23
0
 void OnNavigationViewBackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args) =>
 BackRequested?.Invoke(sender, args);
コード例 #24
0
 private async void SideBar_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     await FileManager.GoBackAsync();
 }
コード例 #25
0
 /// <summary>
 /// Back Requested
 /// </summary>
 /// <param name="sender">Navigation View</param>
 /// <param name="args">Navigation View Back Requested Event Args</param>
 private void Navigation_BackRequested(
     NavigationView sender,
     NavigationViewBackRequestedEventArgs args) =>
 Item.BackRequested(sender, args);
コード例 #26
0
 private void nvAll_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     On_BackRequested();
 }
コード例 #27
0
 private void OnBackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     NavigationService.GoBack();
 }
コード例 #28
0
 private void navMain_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     this.contentFrame.GoBack();
 }
コード例 #29
0
ファイル: NavigationRootManager.cs プロジェクト: sung-su/maui
 void OnBackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     _platformWindow
     .GetWindow()?
     .BackButtonClicked();
 }
コード例 #30
0
 private void NvSample_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
 {
     Console.WriteLine("NvSample_BackRequested");
     contentFrame.GoBack();
 }