Hi,
I have a WPF window in my project, where the window will have a corner radius of 26. Using Drop Shadow, there are square corners of the shadow which looks odd. I have used as following...
<Border BorderThickness="1" CornerRadius="26" > <Border.Effect> <DropShadowEffect BlurRadius="15" Direction="-90" RenderingBias="Quality" ShadowDepth="2" Color="#FCFCFC" /> </Border.Effect>
Is there any way so that the shadow becomes rounded as the window is???

