如何获取字体的名称及其样式?

发布于 2024-10-31 21:04:29 字数 256 浏览 0 评论 0原文

我有两个组合框:[_cmbxFontName, _cmbxStyleName]

我可以将所有已安装的字体加载到_cmbxFontName中,但无法加载字体样式。如果我在 _cmbxFontName 中选择字体名称,则另一个 _cmbxstyleName 组合框想要加载其样式。例如“[常规、正常、粗体、斜体等]。

我知道所有字体都有不同的样式,但如何找到并加载它们?

I have two Comboboxes: [_cmbxFontName, _cmbxStyleName]

I can load all installed fonts into _cmbxFontName, but I could not load fonts styles. If I select a font name in _cmbxFontName, then the other _cmbxstyleName combobox wants to load its styles. for example" [Regular, Normal, Bold, Italic, etc].

I know all fonts have different styles but how can I find and load them?

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

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

发布评论

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

评论(1

零度℉ 2024-11-07 21:04:29

您可以使用 System.Drawing.FontStyle 枚举来列出样式。我认为您可以在创建字体时在 FontStyle 中为任何字体指定任何样式。

New Font(FontFamily.GenericSansSerif, 12.0F, FontStyle.Bold)

您可以将字体样式加载到组合框中,如下所示:

Dim styles() As FontStyle
Dim style As FontStyle

styles = System.Enum.GetValues(GetType(FontStyle))
For Each style In styles
  combobox1.items.add(style.ToString)
Next style

You can use the System.Drawing.FontStyle enumeration to list the styles. I think you can specify any style in FontStyle for any font when the font is created.

New Font(FontFamily.GenericSansSerif, 12.0F, FontStyle.Bold)

You can load the font styles into a combo box like this:

Dim styles() As FontStyle
Dim style As FontStyle

styles = System.Enum.GetValues(GetType(FontStyle))
For Each style In styles
  combobox1.items.add(style.ToString)
Next style
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文