2013-05-29 41 views

回答

0

您可以使用功能Application_Deactivated,Application_Closing App.xaml.cs

private void Application_Deactivated() 

    { 

     Save your application state in isolated storage. 

    } 
private void Application_Closing() 

    { 

     Delete application state from isolated storage. 

    } 
private void Application_Launching() 

    { 

     check if there is a application state stored in isolated storage. 
     if yes then resume it 
     else start fresh 

    } 

希望它能帮助:)

+0

这不是帮助我避免再次闪屏,但感谢响应) – CAMOBAP

相关问题