I've observed that applying a DropShadowEffect to a UIElement sporadically causes the UIElement's content to blur a bit. It's a pretty nasty effect: it can cause a photograph to look out of focus or worse- make an entire 'popup' region completely illegible.

I haven't seen anyone else complaining about this, so my inclination is to think that there is something that I am doing wrong.

Sample use (blurs content at random):

<Border>
   <Border.Effect>
      <DropShadowEffect />
   </Border.Effect>
   <!-- (Content) -->
</Border>

But removing the DropShadowEffect clears it up:

<Border>
    <!--<Border.Effect>
            <DropShadowEffect />
        </Border.Effect>-->
    <!-- (Content) -->
</Border>

Any ideas?

EDIT (added screenshot):

alt text

link|improve this question

Can you post a screenshot? – Simon P Stevens Nov 6 '09 at 15:42
Screenshot added. – someweather Nov 6 '09 at 17:26
feedback

3 Answers

up vote 1 down vote accepted

What I do for this kind of scenarios is putting a Background Rectangle and apply the Blur effect just for that, so that the real content will be free from the effect, which in turn increases the performance. Because when you apply the effect to a visual all the subsequent children are also getting the effect applied, which makes the perf and looks gets bad. Try the below

 <Grid>
  <Rectangle ....>
  <Rectangle.Effect>
     <DropShadowEffect />
  </Rectangle.Effect>
 </Rectangle>
....Your content ...
</Grid>
link|improve this answer
A very good approach that seems to be effective. Thanks! – someweather Nov 6 '09 at 19:38
Thank you for this. I just spent the last two hours tracking down a performance issue that I narrowed down to a border effect. I was looking for a workaround and stumbled across this. Works great, thanks again! – Ed S. Feb 22 '11 at 1:24
feedback

i'm not sure but try setting the BlurRadious for the Image.effects to 0 by default its 5 and see if it will help ?

<Image.Effect>
    			<DropShadowEffect BlurRadius="0"/>
    		</Image.Effect>
link|improve this answer
This has no effect. – someweather Nov 6 '09 at 19:31
feedback

There is a RendingQuality you can use to fix this issue. The default is biased for performance. Just do this:

<DropShadowEffect Color="#FFFD1E1E" ShadowDepth="0" RenderingBias="Quality"/>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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