I want to run some cleanup code(like unregistering scheduled notifications) when a user quits the application by using the Alt-F4 or swipe down gesture. Is there any way to handle an application exit in WinJS? I've read the docs for the WinJS.Application object but don't see any methods to handle user exits.
|
There is no special event that indicates that an app is being closed:
So you'll want to handle a suspend/resume instead. The gory details for handling a suspend are here, but here's a summary:
On resume, you can check if the app was closed by the user using the There are additional suspend/resume guidelines here, and you may find this sample app helpful. |
|||
|