gpt4 book ai didi

wpf - 摆脱WPF中的按钮边框?

转载 作者:行者123 更新时间:2023-12-03 12:01:50 25 4
gpt4 key购买 nike

我试图摆脱按钮边框并仅显示文本,但是即使我将borderThickness设置为0并将borderbrush设置为透明,也仍然显示围绕文本的细线。
alt text

我的xaml代码中的“保存”按钮:

<Button Content="save" Name="btnSaveEditedText" 
Background="Transparent"
Foreground="White"
FontFamily="Tw Cen MT Condensed"
FontSize="30"
Margin="-280,0,0,10"
Width="60"
BorderBrush="Transparent"
BorderThickness="0"/>

无论如何,我可以摆脱按钮边框吗?

最佳答案

您需要重写Button的ControlTemplate:

<Button Content="save" Name="btnSaveEditedText" 
Background="Transparent"
Foreground="White"
FontFamily="Tw Cen MT Condensed"
FontSize="30"
Margin="-280,0,0,10"
Width="60"
BorderBrush="Transparent"
BorderThickness="0">
<Button.Template>
<ControlTemplate TargetType="Button">
<ContentPresenter Content="{TemplateBinding Content}"/>
</ControlTemplate>
</Button.Template>
</Button>

关于wpf - 摆脱WPF中的按钮边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2899948/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com