WPF Dispatcher.UnhandledException within a ShowDialog call.
- by Eric
It appears that ShowDialog() invokes the Dispatcher message handling loop within. Thus, you have a stack that looks something like:
Outer-most Dispatcher message loop
...
x.ShowDialog()
Inner Dispatcher message loop
...
I am using the Dispatcher.UnhandledException to catch exceptions not handled by my code. However, it appears that the Inner…