0

我有一个带有一些按钮的用户控件。每个按钮都包含我正在努力在控件中对齐/居中的文本。

我拥有的 XAML 是

<UserControl x:Class="ProjectX.DetailedInfo"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="28" d:DesignWidth="575">
    <Grid Height="28" Width="575">
        <Button Height="24" HorizontalAlignment="Left" Margin="525,2,0,0" Name="buttonOP1" VerticalAlignment="Top" Width="46" Click="buttonOP1_Click" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="11" />
    </Grid>
</UserControl>

但是文本没有正确对齐,见下文

在此处输入图像描述

HorizontalContentAlignment="Center"并且VerticalContentAlignment="Center"似乎没有按预期工作。有谁知道为什么?

(我检查了文字,没有多余的字符)

谢谢

4

1 回答 1

2

默认情况下,按钮内容在 WPF 中居中。我假设对于标题未对齐的按钮,文本在实际数字之后包含空格。但是如果不发布所有相关代码,就很难说清楚。

于 2012-09-04T10:57:13.767 回答