我有一个单页应用程序“ 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();
}
答案 0 :(得分:0)
PopAsync只是导航到应用程序的根页面,它不会关闭应用程序。如果您想终止应用程序,请点击此处