我正在开发WP10应用程序,我正在浏览我的应用程序中的页面。但是,默认的后退按钮不起作用,因为它适用于Windows Phone 8和Windows Phone 8.1
单击默认后退按钮时,应用程序将关闭。我想要的是它应该导航到导航发生的页面。
我在下面使用过,它适用于Windows 10,但它在移动版本中不起作用。
SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = AppViewBackButtonVisibility.Visible;
SystemNavigationManager.GetForCurrentView().BackRequested += Settings_BackRequested;
private void Settings_BackRequested(object sender, BackRequestedEventArgs e)
{
if (Frame.CanGoBack)
Frame.GoBack();
}
如何处理Windows Phone 10中的硬件后退按钮? 谢谢!