Getting Rid of Ugly TransformGroup Blocks in WPF 05 July 2016 Tips and Tricks If you're obsessed with beautiful and clean XAML code like I am, a real thorn in your side is seeing large ugly TransformGroup blocks in your code. Here's how to fix that. [More]
Building the Ultimate WPF Event Method Binding Extension 05 July 2016 Tips and Tricks Seeing that .NET 4.5 added support in WPF for markup extensions on events, I looked around to see what was out there in terms of method binding support. I couldn't find anything that quite did everything I needed, so I set out to build the ultimate method binding extension. [More]
WPF Visibility Binding with Design Time Control (and more!) 04 July 2016 Tips and Tricks Designers don't want to worry about how to modify view models when designing a UI. They just want to show and hide elements to see what they look like, and occasionally test out a few different values to make sure it still looks correct. The current methods are too complicated to setup or to cumbersome to work with for simple tasks. Here's an alternate approach. [More]