标签: c# winforms
我有代码:
label5.Font = new Font(label5.Font.Name, 12, FontStyle.Underline);
..但我无法想象如何将其更改为粗体。我怎么能这样做?
答案 0 :(得分:5)
您只需使用|组合多种样式:
|
label5.Font = new Font(label5.Font.Name, 12, FontStyle.Underline | FontStyle.Bold);