更改按钮大小(XAML)

utugiqy6  于 2022-12-07  发布在  其他
关注(0)|答案(1)|浏览(203)

我尝试更改按钮(XAML)的大小,使其更大(标准大小:20x12).当我把它放得更高时,当我运行程序时,按钮不会完整地出现:

<Button Name="generate"
            RelativePanel.Below="empty"
            RelativePanel.AlignHorizontalCenterWithPanel="True"
            Margin="0,45,0,0"
            x:Uid="GenerateButton"
            Content=""
            Click="generate_Click" 
            Width="40" Height="24"/>
edqdpe6u

edqdpe6u1#

如果将ButtonHeight设置为24,则还应将Padding减小为0,以便文本适合:

<Button Name="generate"
        RelativePanel.Below="empty"
        RelativePanel.AlignHorizontalCenterWithPanel="True"
        Margin="0,45,0,0"
        x:Uid="GenerateButton"
        Content=""
        Click="generate_Click" 
        Width="40" Height="24" Padding="0"/>

除非文本非常短,否则您可能还需要将MinWidth属性设置为40,而不是将Width属性设置为40。

相关问题