Windows商店应用中的字体粗细

时间:2013-08-27 09:33:52

标签: windows microsoft-metro windows-store-apps windows-store

我正在尝试将字体粗细属性设置为粗体。但不能那样做。那么如何在c#代码中将我的字体权重属性设置为粗体?

tbgc1.Font Weight.Weight =?;

1 个答案:

答案 0 :(得分:1)

using Windows.UI.Text;

....

tbgc1.FontWeight = FontWeights.Bold;

请参阅MSDN

上的FontWeight类