全部博文(403)
2012年(403)
分类: 嵌入式
2012-04-02 22:12:27
在博客园看到很多人写怎么退出windows phone的应用,其实windows phone的程序是不需要退出的.
但是有些童鞋需要,而且不遗余力的研究这个问题。之前得一些方法总结下都属于外门邪道啊!
以下这个方法才是正道
public static void GoMainPageWithBack(NavigationService NavigationService,string MainpageURL)
{
while (NavigationService.CanGoBack)
{
IEnumerator
list.MoveNext();
JournalEntry current = list.Current;
string uri = current.Source.ToString();
if (uri == MainpageURL)
{
NavigationService.GoBack();
}
else
{
NavigationService.RemoveBackEntry();
}
}
}
大体意思就是把你导航栈里的页面移除 如果是首页就GoBack() 然后你就出去了!