In the few years I've been using C# (WINFORMS), I've never used WPF. But now I love WPF, but I don't know how the hell I am supposed to exit my application when the user clicks on the Exit menu item from the File menu. Can somone please help me out!?

I DID google this, and guess what? For such a Simple? thing... Nothing related came up.

Thanks

P.S. I have tried:

this.Dispose();
this.Exit();
Application.ShutDown();
Application.Exit();
Application.Dispose();

... Among many others. Nothing works.

link|improve this question
feedback

6 Answers

up vote 40 down vote accepted

To exit your application you can call

Application.Current.Shutdown();

As described in the documentation to the Application.Shutdown method you can also modify the shutdown behavior of your application by specifying a ShutdownMode:

Shutdown is implicitly called by Windows Presentation Foundation (WPF) in the following situations:

  • When ShutdownMode is set to OnLastWindowClose.
  • When the ShutdownMode is set to OnMainWindowClose.
  • When a user ends a session and the SessionEnding event is either unhandled, or handled without cancellation.

Please also note that Application.Current.Shutdown(); may only be called from the thread that created the Application object, i.e. normally the main thread.

link|improve this answer
Wow! That's ... weird, lol. But thank you :) – anon271334 May 12 '10 at 15:41
1  
As I pointed out it's not weird. In WPF Application is a static class. Application.Current is a reference to your currently running Application. – TimothyP May 12 '10 at 15:42
1  
In my opinion, it is a little weird in the sense that this isn't obvious at first glance, and it deviates just enough from past models to throw people off. It makes perfect sense that it works of course. – Brian MacKay May 12 '10 at 15:52
Put it simple: because if your last window is closed with... this.Close() ...The application will be shutdown, provided that you didn't change the ShutdownMode. – HelloSam Sep 21 '11 at 3:26
1  
If you call Application.Current.Shutdown(); your fonction will not return immediately. You need to call return; as well for this. – Erwin Mayer Apr 18 at 10:06
feedback

This should do the trick:

Application.Current.Shutdown();

If you're interested, here's some additional material that I found helpful:

Details on Application.Current

WPF Application LifeCycle

link|improve this answer
feedback

There should not be an Application.ShutDown(); or .Exit() message.

Application is a static class. It does not refer to the current application You need to get to the current application and then shut it down like this:

Application.Current.Shutdown();
link|improve this answer
feedback

As wuminqi said, Application.Current.Shutdown(); is irreversible and I believe it is typically used to force an application to close at times such as when a user is logging off or shutting down Windows. Instead, call this.close() in your main window. This is the same as pressing "ALT-F4" or the close [x] button on the window. This will cause all other owned windows to close and will end up calling Application.Current.Shutdown(); so long as the close action wasn't cancelled. Please see the MSDN documentation on Closing a Window.

Also, because this.close() is cancellable you can put in a save changes confirmation dialog in the closing event handler. Simply make an event handler for <Window Closing="..."> and change e.Cancel accordingly. (See the MSDN doc for more details on how to do this)

link|improve this answer
feedback

According to my understanding, Application.Current.Shutdown() also has its drawback,

if you want to show a confirm window to let users confirm on quit or not, Application.Current.Shutdown() is irreversible.

link|improve this answer
I don't understand this. We can get user confirmation before calling Application.Current.Shutdown() however. – Amsakanna May 13 '10 at 8:45
I don't see why you should confirm. Too many confirmations is a very bad thing. The fact that somebody took the effort to click to open the File menu, move all the way down to the bottom of the File menu and then click Exit, is pretty much confirmed that they no longer wish to use the application. – anon271334 May 13 '10 at 11:09
Veer: In my case, the confirmation window do appear, but even when you choose "cancel" in the confirmation, the main APP exits. – wuminqi May 14 '10 at 6:05
1  
J-T-S:This is better to be designed case by case. Our app, if there are jobs running, the force exit will cause damages, so we better to let them informed in the confirmation dialog – wuminqi May 14 '10 at 6:06
user339033, I agree – anon271334 Jan 21 '11 at 1:43
feedback

If you REALLY need it to close out you can also use Environment.Exit() but it is not graceful at all (more like ending the process).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown