WPF 让Border显示外阴影

时间:2025-01-25 08:25:30
<Border BorderBrush="Black"  Width="300" Height="200">
            <>
                <DropShadowEffect x:Name="OG" BlurRadius="11" Color="Black" Direction="50" Opacity="0.9" RenderingBias="Performance" ShadowDepth="1">
                    <>
                        BlurRadius
                    </>
                </DropShadowEffect>

            </>

<!--容器放在这边,容器的Background不能为透明,否则阴影效果失效-->

            <Grid Background="Azure">
            </Grid>

        </Border>