3

我尝试设置 Button 的 fontWeight 但字体粗细仍然相同。

我的按钮

<Button x:Name="MyButton"
    Grid.Row="3"
    FontWeight="Bold"
    Content="something"
    Padding="16,10,12,12"
    FontSize="24"
    Background="White"
    Foreground="#400000"
    HorizontalContentAlignment="Left" />

我怎么解决这个问题?

4

1 回答 1

1

要设置FontWeight你必须实际设置 FontWeight。
请参阅下面我将此属性添加到您的代码并将其设置为“Thin”的位置:

对于 WP7.x,任何页面级别的样式都会显式覆盖您正在执行的操作,因此您需要做更多的工作:

    <Button x:Name="MyButton"
            Grid.Row="3"
            Padding="16,10,12,12"
            FontSize="24"
            Background="White"
            HorizontalContentAlignment="Left" >
            <TextBlock Text="something"
                       Style="{StaticResource PhoneTextNormalStyle}" 
                       Foreground="#400000"
                       FontWeight="Thin" />
        </Button>

请注意,我必须为内容设置样式,然后应用一个 FontWeight,它将覆盖样式中的内容。

这个(更简单的版本)适用于 WP8

        <Button x:Name="MyButton"
                FontWeight="Thin"
                Grid.Row="3"
                Content="something"
                Padding="16,10,12,12"
                FontSize="24"
                Background="White"
                Foreground="#400000"
                HorizontalContentAlignment="Left" />
于 2013-03-25T18:11:10.297 回答