如何获取字体的名称及其样式?
我有两个组合框:[_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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 System.Drawing.FontStyle 枚举来列出样式。我认为您可以在创建字体时在 FontStyle 中为任何字体指定任何样式。
您可以将字体样式加载到组合框中,如下所示:
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.
You can load the font styles into a combo box like this: