WPF Button去除按钮边框,添加下划线

XML 复制代码
        <Button Width="45" Height="25" FontSize="20" Background="Transparent" BorderBrush="Transparent" Foreground="#FFC9A322" Click="Btn_Retry_Click" >
            <TextBlock>
                 <Underline>重试</Underline>
            </TextBlock>
        </Button>

去除按钮边框: BorderBrush="Transparent" (边框颜色设置为透明)

去掉按钮背景:Background="Transparent"(背景颜色设置为透明)

Content添加下划线:Button 标签内添加 TextBlock 文本标签,通过使用Underline来实现下划线功能

相关推荐
Xin_ye100862 天前
第三章:内存泄漏的常见“案发现场”
c#·wpf
心平气和量大福大2 天前
C#-WPF-UserControl-生命周期(加载 退出)
开发语言·c#·wpf
czhc11400756632 天前
7.23:Claude code:注册->封表
wpf
心平气和量大福大2 天前
C#-WPF-控件-TextBox 数据绑定
开发语言·c#·wpf
listening7773 天前
HarmonyOS 6.1 全场景协同实战:从“单机”到“超级终端”的分布式重构
wpf
心平气和量大福大4 天前
C#-WPF-布局-Grid
c#·wpf·visual studio
心平气和量大福大4 天前
C#-WPF-Window主窗体
开发语言·c#·wpf
FuckPatience5 天前
Telerik UI for WPF 值不能为null。参数名:key
ui·wpf
lindexi5 天前
WPF 笔迹延迟优化从硬件到软件的全链路分析
wpf
weixin_727535626 天前
双Token认证体系深度拆解:Spring Security + JWT + Redis
redis·spring·wpf