如何在silverlight中设置网格周围的阴影?

时间:2012-01-04 06:32:07

标签: wpf silverlight shadow

我想在网格的各个方向设置阴影效果。

我正在使用 DropShadowEffect 控件属性来设置阴影。

我发现方向属性设置了控件周围的阴影。

 <Grid x:Name="LayoutRoot" Background="#F4F2F1" Width="300" Height="300">
        <Grid.Effect>
        <DropShadowEffect BlurRadius="300"
                              Color="#877b77"
                              Opacity="100"
                              ShadowDepth="10"
                              Direction="0" />
        </Grid.Effect>
    </Grid>

我得到的输出是

如下

enter image description here

我希望阴影出现在网格的各个方面。

I used this link to set direction property but its not giving me what i desire

如何将阴影设置为所有方向?

1 个答案:

答案 0 :(得分:14)

您必须将ShadowDepth设置为0(阴影直接位于边框下方)。