要设置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" />