Navigation.PopAsync()在用于离开应用程序时不起作用

时间:2019-10-20 12:46:26

标签: c# android xamarin xamarin.forms

我有一个单页应用程序“ ContentPage”,我无法使用“ PopAsync()”关闭该应用程序

我正在使用Samsung J6进行调试。

// Instantiated page
MainPage = new NavigationPage(new MainPage());

// Method used to close the application
private async void Leave(object sender, EventArgs e)
{
  await Navigation.PopAsync();
}

1 个答案:

答案 0 :(得分:0)

PopAsync只是导航到应用程序的根页面,它不会关闭应用程序。如果您想终止应用程序,请点击此处

How to terminate a Xamarin application?