制作更好的阴影渐变问题

时间:2012-05-17 18:30:28

标签: c# .net wpf silverlight xaml

我使用以下代码创建阴影

但我的影子看起来很难看。 我想要一些我们可以从MS Windows中看到的内容。 您可以在我附加的图片下确认两者。

怎么做?

谢谢!

DropShadowEffect myDropShadowEffect = new DropShadowEffect();
myDropShadowEffect.Color = GetShadowColorValue();
myDropShadowEffect.ShadowDepth = 5;
myDropShadowEffect.BlurRadius = 70;
myDropShadowEffect.Opacity = 0.8;                  
this.Effect = myDropShadowEffect;   

enter image description here

1 个答案:

答案 0 :(得分:1)

将你的模糊半径降低到更像5到7,70是巨大的。我也会把你的不透明度降低到35到50%

左边的是你现在得到的结果吗?或者你想要什么?