David on Aug 30th, 2008Change the Default Font of a WPF Application
Introduction
When you create a new application in WPF all text will be displayed using the default font of your operating system. If you’re running Vista the default font will be ‘Segoe UI’, if you’re running on XP I expect it will be Tahoma.
Where does the Default Font come from?
There are two main controls which display [...]
David on Aug 10th, 2008Pluralizing Value Converter
I often find myself wanting to pluralize text in my applications such as displaying either ‘1 Message’ or ‘2 Messages’. Anyone who has played with Rails will have likely came across the Infector which, among other things, is capable of taking a singular word and returning its plural – message => messages and mouse => [...]