如何退出Windows Phone 7应用程序?

时间:2010-12-20 17:13:48

标签: windows-phone-7

  

可能重复:
  Windows Phone 7 close application
  Close a WP7 application programatically?
  Is there a way to programmatically quit my App? (Windows Phone 7)

大家好,        有没有办法退出Windows Phone 7中的应用程序。我的EULA.xaml和MainPage.xaml的问题已解决,但在任何一种情况下都必须在MainPage.xaml上退出我的应用程序。 提前谢谢。

2 个答案:

答案 0 :(得分:1)

在WP7-Silverlight中没有标准API可以做到这一点。诀窍是,您可以抛出未处理的异常,这可能导致应用程序中断并转到WindowsPhone的开始菜单。

public class ExitException :Exception {}

并将其扔到您想要退出的地方。

throw new ExitException();

答案 1 :(得分:0)