我有两个页面(MainPage和page1)。当用户在page1中时,如果用户按下后退键,则会弹出以下消息:“你确定要退出吗?”
因此,如果用户按OK,那么它应该导航到另一个页面,如果用户按下取消它应该保持在同一页面。这是我的代码:
此代码以Page1.Xaml:
编写Protected override void OnBackKeyPrss(System.ComponentModel.CancelEventArgs e)
{
MessageBoxResult res = MessageBox.show("Are you sure that you want to exit?",
"", MessageBoxButton.OkCancel);
if(res==MessageBoxResult.OK)
{
App.Navigate("/mainpage.xaml");
}
else
{
//enter code here
}
}
然而,当我按下取消时,它仍然导航到mainpage.xaml。我该如何解决这个问题?
答案 0 :(得分:1)
使用e.Cancel = true;
取消导航。
如果我错了,请纠正我。你的代码看起来搞砸了。我认为您的上一页/后页是mainpage.xaml
,而OK
您再次导航到此页面。如果是这种情况,则无需再次导航,您可以使用以下代码。
protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
{
MessageBoxResult res = MessageBox.Show("Are you sure that you want to exit?",
"", MessageBoxButton.OKCancel);
if (res != MessageBoxResult.OK)
{
e.Cancel = true; //when pressed cancel don't go back
}
}
答案 1 :(得分:0)
试试这个
protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
{
if (MessageBox.Show("Are you sure that you want to exit?", "Confirm", MessageBoxButton.OKCancel) == MessageBoxResult.Cancel)
e.Cancel = true;
else
base.OnBackKeyPress(e);
}
答案 2 :(得分:0)
对于经典的“你确定要退出吗?”消息对话框,您需要覆盖OnBackKeyPress
事件并在其中使用您的MessageBox
:
protected override void OnBackKeyPress(CancelEventArgs e)
{
var messageBoxResult = MessageBox.Show("Are you sure you want to exit?",
"Confirm exit action",
MessageBoxButton.OKCancel);
if (messageBoxResult != MessageBoxResult.OK)
e.Cancel = true;
base.OnBackKeyPress(e);
}
但我想指出导航逻辑以及你为什么做错了什么。如果我理解正确,MainPage
是启动应用时显示的第一个页面,从Page1
导航到MainPage
时会显示
NavigationService.Navigate(new Uri("MainPage.xaml", UriKind.Relative));
。
向后导航时,而不是
<击>
NavigationService.GoBack();
击>
(你没有这样写,但至少这是你应该写的,语法正确但逻辑错误)
应该这样做:
NavigationStack
这是因为在您的应用内导航时,会有一个Push()
(包含导航页面)只有Pop()
(导航转发)的行为,而不是{{1}} (向后导航)。
有关Windows Phone中的更多导航信息,请click here。