C#

How to see all icons available in the Blazor project template

Recently i was trying to change the icon for one of the NavMenu items in a Blazor project. I was trying to figure out which icons are shipped with the default Blazor template. The icons in the template come from the open iconic project. Have a look at the <project>/wwwroot/css/open-iconic/readme.md file that is part of

How to see all icons available in the Blazor project template Read More »

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 »