WPF比粗体更大胆

时间:2017-02-13 20:22:50

标签: c# wpf

我想让文字更粗体而不是粗体,所以我尝试了FontWeight的其他枚举值,但所有这些值似乎都会产生相同的结果

<StackPanel>
    <TextBlock Text="Test" FontWeight="Bold"/>
    <TextBlock Text="Test" FontWeight="Black"/>
    <TextBlock Text="Test" FontWeight="ExtraBlack"/>
    <TextBlock Text="Test" FontWeight="ExtraBold"/>
    <TextBlock Text="Test" FontWeight="UltraBlack"/>
    <TextBlock Text="Test" FontWeight="UltraBold"/>
</StackPanel>

enter image description here

有没有办法让字体格外加粗?

1 个答案:

答案 0 :(得分:8)

您将获得的不同权重数量取决于字体。许多字体只有两个权重 - 正常和粗体。 FontWeight设置中指定的权重值只是一个请求。 Windows将返回权重最符合请求权重的字体。