示例#1
0
 // 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)
 {
     // Uaktywnij kafelek
     MediboxAdministrator.TileAdministrator();
     // Dodaj przypomnienia
     _medibox.LetAddReminders = MediboxAdministrator.LongRemindersAdministrator(_medibox.LetAddReminders);
 }
示例#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)
        {
            // Ensure that required application state is persisted here.

            // Uaktywnij kafelek
            MediboxAdministrator.TileAdministrator();
            // Dodaj przypomnienia
            _medibox.LetAddReminders = MediboxAdministrator.LongRemindersAdministrator(_medibox.LetAddReminders);
        }