示例#1
0
 public Page2ViewModel(IAppNavigation appNavigation)
 {
     _appNavigation = appNavigation;
     PopCommand     = new Command(async() =>
     {
         // Add the key to the input string.
         await _appNavigation.PopToRootPageAsync();
     });
 }