Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Exception Window
Message
From
01/03/2012 15:16:21
 
 
To
All
General information
Forum:
ASP.NET
Category:
The Mere Mortals .NET Framework
Title:
Exception Window
Miscellaneous
Thread ID:
01536980
Message ID:
01536980
Views:
66
I'm having a problem with displaying the exception window when the app throws an exception. The code is in MainEntry.cs.
                // Log any unhandled exceptions
                appWrapper.Application.DispatcherUnhandledException += delegate(object sender, DispatcherUnhandledExceptionEventArgs e)
                {
                    // Write the error to the application log
                    mmAppBase.Log.WriteException(e.Exception);

                    // Display the Exception form
                    var ExceptionWindow = new mmExceptionWindow(e.Exception.Message, e.Exception.StackTrace);
                    ExceptionWindow.ShowDialog();
                };
The dialog window is displayed, but is completely empty; no text, not buttons...nothing. Anybody know what's happening here?
Thanks,
Dan Jurden
djurden@outlook.com
Next
Reply
Map
View

Click here to load this message in the networking platform