无边框样式不会将文本放在WPF按钮的中心

问题描述 投票:0回答:1

我具有以下隐藏或隐藏按钮边框样式的样式:

<Style x:Key="SinBorde" TargetType="{x:Type Button}" >
    <Setter Property="Template" >
        <Setter.Value>
            <ControlTemplate TargetType="Button">
                <Border Background="Transparent">
                    <ContentPresenter/>
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

并且该按钮看起来像下一张图像左侧的按钮,请注意右侧的按钮没有应用该样式,并且文本位于按钮的中间:

enter image description here

欢迎任何意见或建议以文本为中心

wpf xaml button styles
1个回答
1
投票

默认按钮模板设置内容的对齐方式:

© www.soinside.com 2019 - 2024. All rights reserved.