views:

733

answers:

1

I have a WPF application that spins off several threads. I have defined a DispatcherUnhandledException event handler in App.xaml.cs that displays a detailed error message, and this handler gets called every time the UI thread encounters an exception. The problem is with the child threads: their unhandled exceptions never get handled. How do I do this?

Sample code:

private void Application_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
{
    MessageBox.Show("detailed error message");
}

private void Application_Startup(object sender, StartupEventArgs e)
{
    //...
    //If an Exception is thrown here, it is handled
    //...

    Thread[] threads = new Thread[numThreads];
    for(int i = 0; i < numThreads; i++)
    {
        threads[i] = new Thread(doWork);
        threads[i].Start();
    }
}

private void doWork()
{
    //...
    //Exception thrown here and is NOT handled
    //...
}

Edit: Once an unhandled exception occurs, I want to display an error message with a stack trace, and then exit the application.

+5  A: 

Try hooking up to the AppDomain.CurrentDomain.UnhandledException event as well.

Brandon
See http://msdn.microsoft.com/en-us/library/system.appdomain.unhandledexception.aspx to read why this should only be used to log the error before exiting.
Henk Holterman
@Henk, thats the same link I already posted. You are right though, the exception should only be used for logging purposes.
Brandon
Brandon, OK, I didn't check your link (-: But it follows that every Thread should handle it's own exceptions.
Henk Holterman