sometimes, under not reproducible circumstances, my WPF application crashes without any message. The application simply close instantly.

Where is the best place to implement the global Try/Catch block. At least i have to implement a messagebox with: "Sorry for the inconvenience ..."

Any help would be most welcome, thank you.

link|improve this question

feedback

5 Answers

up vote 20 down vote accepted

You can handle the AppDomain.UnhandledException event

EDIT: actually, this event is probably more adequate: Application.DispatcherUnhandledException

link|improve this answer
Add the handler in the forms constructor like this: AppDomain.Current.UnhandledException+=... – Dabblernl Sep 24 '09 at 15:47
3  
Bad idea if you create multiple instances of the window... – Thomas Levesque Sep 24 '09 at 15:50
Hi Thomas, thanks for your answer. Appdomain.UnHandledException works great for me. – Scott Olson Sep 28 '09 at 9:12
feedback

You can trap unhandled exceptions at three levels:

  1. AppDomain.UnhandledException From all threads in the AppDomain.
  2. Dispatcher.UnhandledException From a single specific UI dispatcher thread.
  3. Application.DispatcherUnhandledException From the main UI dispatcher thread in your WPF application.

You should consider what level you need to trap unhandled exceptions at.

Deciding between the last two depends upon whether you're using more than one WPF thread. This is quite an exotic situation and if you're unsure whether you are or not, then it's most likely that you're not.

link|improve this answer
4  
Note for your item #3, I had to put .Current following Application like this: Application.Current.DispatcherUnhandledException += ... – Keith G Mar 16 '11 at 20:57
@Keith G -- all of these events are instance members, so you would need to hook them for each and every object required, depending upon your circumstances. – Drew Noakes Mar 17 '11 at 0:29
If the application just closes without going to any of these exception handlers it can also be that the System was shutdown with Environment.FailFast – Mo0gles Oct 18 '11 at 8:16
feedback

A quick example of code for Application.Dispatcher.UnhandledException:

    public App() :base() {
        this.Dispatcher.UnhandledException += OnDispatcherUnhandledException;
    }

    void OnDispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e) {
        string errorMessage = string.Format("An unhandled exception occurred: {0}", e.Exception.Message);
        MessageBox.Show(errorMessage, "Error", MessageBoxButton.OK, MessageBoxImage.Error);
        e.Handled = true;
    }

I added this code in App.xaml.cs

link|improve this answer
+1 for cut/paste code. If you're looking to spice up error message dialog, WPF extended toolkit has a messagebox control. – Arun Mahapatra Mar 26 '11 at 14:48
feedback

I use the following code in my WPF apps to show a "Sorry for the inconvenience" dialog box whenever an unhandeled exception occurs. It shows the exception message, and asks user whether they want to close the app or ignore the exception and continue (the latter case is convenient when a non-fatal exceptions occur and user can still normally continue to use the app).

In App.xaml add the Startup event handler:

<Application .... Startup="Application_Startup>

In App.xmal.cs code add Startup event handler function that will register the global application event handler:

using System.Windows.Threading;

private void Application_Startup(object sender, StartupEventArgs e)
{
    // Global exception handling  
    Application.Current.DispatcherUnhandledException += new DispatcherUnhandledExceptionEventHandler(AppDispatcherUnhandledException);    
}

void AppDispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
{    
    \#if DEBUG   // In debug mode do not custom-handle the exception, let Visual Studio handle it

    e.Handled = false;

    \#else

    ShowUnhandeledException(e);    

    \#endif     
}

void ShowUnhandeledException(DispatcherUnhandledExceptionEventArgs e)
{
    e.Handled = true;

    string errorMessage = string.Format("An application error occurred.\nPlease check whether your data is correct and repeat the action. If this error occurs again there seems to be a more serious malfunction in the application, and you better close it.\n\nError:{0}\n\nDo you want to continue?\n(if you click Yes you will continue with your work, if you click No the application will close)",

    e.Exception.Message + (e.Exception.InnerException != null ? "\n" + 
    e.Exception.InnerException.Message : null));

    if (MessageBox.Show(errorMessage, "Application Error", MessageBoxButton.YesNoCancel, MessageBoxImage.Error) == MessageBoxResult.No)   {
        if (MessageBox.Show("WARNING: The application will close. Any changes will not be saved!\nDo you really want to close it?", "Close the application!", MessageBoxButton.YesNoCancel, MessageBoxImage.Warning) == MessageBoxResult.Yes)
    {
        Application.Current.Shutdown();
    } 
}
link|improve this answer
feedback

To supplement Thomas's answer, the Application class also has the DispatcherUnhandledException event that you can handle.

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.