Organizing Generic.xaml
Posted by Ramon in Development on August 18, 2010
WPF assemblies that use themes for the default control style can often become large. This post explains how to fix that problem.
TabControl’s ContentTemplate cannot be changed dynamically
Posted by Ramon in Development on July 28, 2010
Changes to the TabControl’s ContentTemplate are not propagated directly. In this post, I’ll explain what is happening and how you can fix this problem.
Publish SABnzbd via Bonjour
This post describes how you can publish SABnzbd via Bonjour on a FreeBSD system with AVAHI installed.
Install SABnzbd on FreeBSD
The FreeBSD port collection contains an old SABnzbd version. In this post I will describe how you can upgrade to the latest version.
Beware of routed events
Posted by Ramon in Development on July 23, 2010
WPF introduces the concept of routed events. There are different routing strategies, but the most commonly used strategy is the bubbling strategy. With the bubbling strategy, the event handlers on the event source are invoked. The routed event then routes to successive parent elements until reaching the element tree root or when a handler sets [...]