Example #1
0
 // 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)
 {
     Debug.WriteLine("Application Deactivated " + DateTime.Now + " " + sender.ToString() + " " + e.ToString());
 }
Example #2
0
 // 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)
 {
     Debug.WriteLine("Deactivated: " + e.ToString());
 }