1

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

tbgc1.FontWeight.Weight = ?;

4

1 回答 1

1
using Windows.UI.Text;

....

tbgc1.FontWeight = FontWeights.Bold;

请参阅MSDN上的 FontWeight 类

于 2013-08-27T10:52:42.547 回答