我想让文字更粗体而不是粗体,所以我尝试了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>
有没有办法让字体格外加粗?
答案 0 :(得分:8)
您将获得的不同权重数量取决于字体。许多字体只有两个权重 - 正常和粗体。 FontWeight设置中指定的权重值只是一个请求。 Windows将返回权重最符合请求权重的字体。