如何在 VB.NET 中使用多种字体样式组合?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/2186810/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-09 14:39:01  来源:igfitidea点击:

How can I use multiple combinations of font styles in VB.NET?

vb.netfonts

提问by ssm

If I want to set my Font I can use

如果我想设置我可以使用的字体

new Font=("Times New Roman", 12, Drawing.FontStyle.Bold)

Instead of Bold, I can use Italic, Regular or Underline.

除了粗体,我可以使用斜体、正则或下划线。

But I want to make use of Bold and Italic at the same time.

但我想同时使用粗体和斜体。

How can I do this?

我怎样才能做到这一点?

回答by Fredrik M?rk

The FontStyleenumeration is a flags enumeration, so you can combine values (using the Oroperator in VB.NET, |in c#):

FontStyle枚举是标志枚举,这样你就可以(使用组合值Or在VB.NET运营商,|在C#):

new Font("Times New Roman", 12, Drawing.FontStyle.Bold Or Drawing.FontStyle.Italic)