我正在开发 WP7 Phonegap 应用程序。我已经使用下面的代码来处理后退按钮,但是每当我单击后退按钮时,后退按钮事件不会被取消并且应用程序会退出。
void OnBackKeyPressed(object sender, CancelEventArgs e)
{
var result = MessageBox.Show("Dof fd fd you want to exit?", "Attention!",
MessageBoxButton.OKCancel);
if (result == MessageBoxResult.OK)
{
// Do not cancel navigation
return;
}
e.Cancel = true;
}
请帮助我。提前致谢。