我尝试设置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" />
我该如何解决这个问题?
答案 0 :(得分: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" />