See http://inky.ws/g/21s for screencaps of the text rendering distortion.
I apply this style to get a glow effect:
<Style TargetType="FrameworkElement" x:Key="GlowBright"
BasedOn="{StaticResource ToolTipBase}">
<Setter Property="Effect">
<Setter.Value>
<DropShadowEffect Opacity="1" ShadowDepth="0" BlurRadius="7"
Color="White"/>
</Setter.Value>
</Setter>
</Style>
<!-- Expander headers, Group box headers, Check box headers, Labels -->
<Style TargetType="TextBlock" BasedOn="{StaticResource GlowBright}"/>
Unfortunately, it's making certain element rendering glitchy. The glitches change or disappear when I resize the window. So... how to avoid the glitches?
Edit - doing this:
<Style TargetType="TextBlock" BasedOn="{StaticResource GlowBright}">
<Setter Property="TextOptions.TextFormattingMode" Value="Ideal"/>
<Setter Property="TextOptions.TextHintingMode" Value="Fixed"/>
<Setter Property="TextOptions.TextRenderingMode" Value="ClearType"/>
</Style>
does not help.