예제 #1
0
파일: App.xaml.cs 프로젝트: obfan/WP7Fanfou
 // Code to execute when the application is closing (eg, user hit Back)
 // This code will not execute when the application is deactivated
 private void Application_Closing(object sender, ClosingEventArgs e)
 {
     try
     {
         ScheduledHelper.Start();
     }
     catch
     {
     }
 }
예제 #2
0
파일: App.xaml.cs 프로젝트: obfan/WP7Fanfou
 // Code to execute when the application is deactivated (sent to background)
 // This code will not execute when the application is closing
 private void Application_Deactivated(object sender, DeactivatedEventArgs e)
 {
     ScheduledHelper.Start();
 }