Recently, I have been working on a large scale Windows 8 app also known as Windows Store app. If you have been dealing with Windows 8 apps, you may also know that we can use ALT+F4 to close a Windows Store or Windows 8 app.
Every time I build my application, I have to use ALT+F4 to close it and then switch from metro mode to regular mode and it was getting annoying. So, I added a button on the UI (temporarily while building and testing my app) and on that I added exit application functionality.
To close an app in code, all we need to do is, get the current application context and call the Exit method.
The following code snippet will do the trick: