How to show an unhandled exception window in WPF

In the previous post, we created a base class that listens for unhandled exceptions in our .NET application. In this post we will derive from that class to show an error window for every unhandled exception that occurs in our program. The WindowExceptionHandler class Let’s start with the WindowExceptionHandler. This class inherits from GlobalExcptionHanderBase (which …

How to show an unhandled exception window in WPF Read More »