I use the following code to create the shadow.
But my shadow looks ugly. I want something like we can see out of MS Windows. You can confirm both under the image I have attached.
How it could be done?
Thank you!
DropShadowEffect myDropShadowEffect = new DropShadowEffect();
myDropShadowEffect.Color = GetShadowColorValue();
myDropShadowEffect.ShadowDepth = 5;
myDropShadowEffect.BlurRadius = 70;
myDropShadowEffect.Opacity = 0.8;
this.Effect = myDropShadowEffect;

Bring your Blur Radius down to more like 5 to 7, 70 is huge. I’d also bring down your opacity to like 35 to 50%
Is the on on the left the results of what you get now? Or what you want?