Shadow Effect in WPF
Adding the shadow effect lowers the rendering resolution of the control. How can I prevent that??
5 Replies
Without Shadow Effect
With Shadow Effect
Stack Overflow
WPF: Why does text and elements blur if I use dropshadow effect on ...
If I add a DropShadowEffect to an parent element the text of the child elements are blurred. Why?
<Grid>
<Grid.Effect>
<DropShadowEffect />
</Grid.Effect>
...
may be relevant here
Thanks 👍