I'm new to Win 8 Metro application development, and discovered that lots of things seem to be changed from the classic WPF.

What troubles me the most is that there's no way to close the app. This is extremely annoying when it comes to debugging the app. Therefore I'm looking at ways to add a "close" button in my app.

However, the old WPF way of:

Application.Current.Shutdown()

no longer exists. And I couldn't find the Process class in System.Diagnostics any more.

Does anyone know how to do this?

link|improve this question

50% accept rate
How about just pressing Alt+F4? – Gabe Jan 27 at 2:53
2  
The lack of closing is by design - lifetime management is supposed to take care of resources, and "Close" button in the app is frowned upon as a matter of UI design. If you just need to close for debugging, have you considered using taskkill? You can create an icon for it on the desktop or taskbar, and then assign a shortcut key for convenience. – Pavel Minaev Jan 27 at 3:13
1  
@Pavel: It seems like a suboptimal design to force users to resort to some expert maneuver to deal with a misbehaving app. If an app can't close itself, Windows should provide a way to do so. – Gabe Jan 27 at 3:37
2  
Hehe, it's going to take a while to get Windows programmers used to the new ways. What exactly is the point of exiting a program? It will just take longer when I need it again. Clearly this should be an OS job and not a user annoyance. File + Save is long overdue to be excised as well. Etcetera. Sigh, I'm out of taskbar button space, gotta close something. – Hans Passant Jan 27 at 13:30
1  
You can think of metro apps as websites. You can't "kill" a website, can you? – lukas Jan 27 at 16:31
show 4 more comments
feedback

4 Answers

up vote 5 down vote accepted

You're looking for App.Current.Exit()

link|improve this answer
feedback

The WinRT reference documentation for the developer preview states that:

CoreApplication.Exit | exit method

Shuts down the app.

Source: http://msdn.microsoft.com/en-us/library/windows/apps/windows.applicationmodel.core.coreapplication.exit.aspx

link|improve this answer
feedback

As far as I know you can't close a Metro app (by design) (using the Task-Manager is the only option that works) and as far as I know there is no way to exit a Metro app programatically (by design too).

You could try to throw an unhandled exception (I wouldn't recommend that).

link|improve this answer
feedback

This is what I found to close the app.

  App.Current.Exit();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.