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

发布于 2024-08-20 00:36:02 字数 166 浏览 7 评论 0原文

如果我想设置我的字体

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

,我可以使用斜体、常规或下划线代替粗体。

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

我该怎么做?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山人契 2024-08-27 00:36:02

FontStyle 枚举是标志枚举,因此您可以组合值(在 VB.NET 中使用 Or 运算符,在 C# 中使用 |):

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

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

new Font("Times New Roman", 12, Drawing.FontStyle.Bold Or Drawing.FontStyle.Italic)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文