If I add a DropShadowEffect to an parent element the text of the child elements are blurred. Why?

<Grid>
    <Grid.Effect>
        <DropShadowEffect />
    </Grid.Effect>
    <Grid.ColumnDefinitions>
        <ColumnDefinition />
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
        <RowDefinition />
    </Grid.RowDefinitions>
    <TextBlock Background="White">Test</TextBlock>
</Grid>

Update:

with shadow

enter image description here

without shadow

enter image description here

link|improve this question
It does not happen to me, post more code or a screenshot – Felice Pollano Jun 22 '11 at 7:45
I'm working with Windows XP over Parallels on my Mac, could this be the problem? – Smolla Jun 23 '11 at 8:59
@Smolla are you using WPF4 ? – Felice Pollano Jun 23 '11 at 9:01
Good question. I work with Visual Studio 2010 Express. Where can I find the version of the WPF? – Smolla Jun 23 '11 at 9:51
@Smolla should be 4, anyway check the version on PresentationCore – Felice Pollano Jun 23 '11 at 9:52
show 2 more comments
feedback

2 Answers

The reason why the text is blurred is because Effects cause the elements to be rendered into a Bitmap first. This means that sub-pixel rendering (ClearType) cannot take place and therefore the text appears lower-quality.

You can work around this by applying the effect to only parts of your visual tree. The parts that don't contain the text.

In your case you probably want something like this:

<Grid>
    <Border>
        <Border.Effect>
            <DropShadowEffect />
        </Border.Effect>
    </Border>
    <TextBlock Background="White">Test</TextBlock>
</Grid>
link|improve this answer
feedback

Try adding TextOptions.TextFormattingMode="Display" to the TextBlock as shown in WPF Blurry fonts problem - Solutions.
The effect might somehow increase the "bluriness" by e.g. moving the grid some fractions of a pixel or so.

link|improve this answer
This didn't change anything :( – Smolla Jun 23 '11 at 8:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.