在wp7中控制后退按钮和开始按钮

时间:2013-01-09 11:34:31

标签: windows-phone-7 location back-button-control

按下后退按钮或按下开始按钮后,进程是否可以继续。 我正在使用GeoCoordinateWatcher的职位变更事件。我想在按下后退或开始按钮后继续工作。 我该怎么办?

1 个答案:

答案 0 :(得分:1)

按下开始按钮,进程将暂停,您可以在下次发射时开始。意思是你可以覆盖后面的关键过程。

 protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
 {
   //cancels the navigation.
   e.Cancel = true;
 }