WPF 对Border 边框进行投影

画一个 Border 对边框进行投影

复制代码
<Window x:Class="WpfApp1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <Border Margin="100" BorderThickness="1" BorderBrush="Blue">
            <Border.Effect>
                <DropShadowEffect Color="#E6EFFC"
                          Direction="320" 
                          BlurRadius="10"
                          ShadowDepth="10" />
            </Border.Effect>
            <Grid Background="White">
                <TextBlock Text="WPF 边框投影" Margin="50" FontSize="30"/>
            </Grid>
        </Border> 
    </Grid>
</Window>
复制代码
Direction  方向根据情况调整
效果图如下

 

posted @   VipSoft  阅读(183)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 一个费力不讨好的项目,让我损失了近一半的绩效!
· 清华大学推出第四讲使用 DeepSeek + DeepResearch 让科研像聊天一样简单!
· 实操Deepseek接入个人知识库
· CSnakes vs Python.NET:高效嵌入与灵活互通的跨语言方案对比
· Plotly.NET 一个为 .NET 打造的强大开源交互式图表库
历史上的今天:
2021-09-28 compilation.templatesPlugin is not a function
2020-09-28 Intellij idea 生成带注释的get/set
2019-09-28 resources-plugin-2.6.pom.part.lock (没有那个文件或目录)
2019-09-28 Starting Jenkins bash: /usr/bin/java: 没有那个文件或目录
2014-09-28 C# Dictionary通过value获取对应的key值
点击右上角即可分享
微信分享提示