コード例 #1
0
 public void OnBackButtonPressed(object sender, UniversalBackPressedEventArgs args)
 {
     BackButtonPressed?.Invoke(sender, args);
 }
コード例 #2
0
ファイル: MainViewModel.cs プロジェクト: pingzing/Codeco
 private void OnBackPressed(object sender, UniversalBackPressedEventArgs args)
 {
     System.Diagnostics.Debug.WriteLine("MainPageVM BackPressed!");
     _navigationService.GoBack();
 }
コード例 #3
0
ファイル: SettingsViewModel.cs プロジェクト: pingzing/Codeco
 //This is seperate from GoBack() because the MVVM Commanding model requires async void, and the
 //event handler style here for the hardware back button requires async Task<T> or void. So we need both!
 private void OnBackPressed(object sender, UniversalBackPressedEventArgs args)
 {
     GoBack();
 }