Problem is described and demonstrated on the following links:
Explanation: Text Clarity in WPF. This link has font comparison.
I would like to collect all possible solutions for this problem. Microsoft Expression Blend uses WPF but fonts look readable.
Are there any more solutions?
This is going to be fixed in VS2010 (and WPF4) beta 2
IT LOOKS LIKE IT HAS BEEN FINALLY SOLVED !
Scott Hanselman's ComputerZen.com: WPF and Text Blurriness, now with complete Clarity
.NET 4 finally has a solution to WPF's poor text rendering quality, but it is well-hidden. Set the following for every window:
TextOptions.TextFormattingMode="Display"
Default value is "Ideal" which is not at all what the name implies.
There are two other options in TextOptions, namely TextHintingMode and TextRenderingMode, but they both have sensible defaults.