我正在尝试在我的Windows手机应用中添加fontWeight =“Light”。但它不适用于设计师,它在模拟器或设备上显示光字体,它根本不会使字体变细。
<TextBlock Text="Some text in normal" FontSize="22" FontFamily="Segoe UI" FontWeight="Normal" />
<TextBlock Text="Some text in normal" FontSize="22" FontFamily="Segoe UI" FontWeight="Light" />
这是它在设备上的外观。
以下是它在VS设计师中的表现。
我做错了什么
答案 0 :(得分:3)
将字体系列从Segoe UI
更改为Segoe WP
。