标签: windows microsoft-metro windows-store-apps windows-store
我正在尝试将字体粗细属性设置为粗体。但不能那样做。那么如何在c#代码中将我的字体权重属性设置为粗体?
tbgc1.Font Weight.Weight =?;
答案 0 :(得分:1)
using Windows.UI.Text; .... tbgc1.FontWeight = FontWeights.Bold;
请参阅MSDN