Windows Phone的生命周期

来源:互联网 发布:mysql for mac安装教程 编辑:程序博客网 时间:2024/04/29 03:47

Launching(启动)

在此期间,不建议访问IsolatedStorage和network,同样也不建议打开transient状态的实例(因为这是启动周期)。这样会减慢程序加载速度,影响用户体验。如果非要这么做,应使用异步操作。

Running(运行)

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

戳:

http://msdn.microsoft.com/en-us/library/ff817009%28v=VS.92%29.aspx


After an application has been tombstoned, the user may not return to the application. For this reason, you should save persistent state to isolated storage both in the Deactivated event handler and in the Closing event handler. To avoid duplicating code, you may want to create a single method that saves persistent data to isolated storage and call the same method from both event handlers.