WP7启动时默认的代码执行顺序
1.首先执行App.xaml.cs里面的App()方法。
2.执行App.xaml.cs里面的 Application_Launching()方法。
3.执行MainPage.xaml.cs里面的MainPage()方法。
4.执行MainPage.xaml.cs里面的OnNavigatedTo()方法
5.执行MainPage.xaml.cs里面的PhoneApplicationPage_Loaded()方法。
这些之后再执行你自己设定的事件所触发的代码
退出时:
6.执行MainPage.xaml.cs里面的OnNavigatedFrom()方法
7.将执行App.xaml.cs里面的 Application_Closing()方法。
关于生命周期的其他知识点参考该博友的网摘
http://www.cnblogs.com/konck/archive/2012/01/14/2322245.html