C#.Net 中字体名称的下拉列表
我想创建一个下拉列表,其中显示可用的字体名称以及可用字体的样式。任何人都可以向我提供一些我可以使用的信息或代码示例吗?
I would like to create a dropdown in which the available Font names are displayed, in addition to the styles in which the font is available. Can anyone provide me with some information or code examples that I might be able to use in order to get started?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调用 FontFamily.Families 获取系统上字体系列的集合,或调用 FontFamily.GetFamilies(Graphics) 获取给定图形上下文的系列。然后对于每种字体调用 FontFamily.IsStyleAvailable 来确定对粗体、斜体等的支持。
Call FontFamily.Families to get the collection of font families on the system, or FontFamily.GetFamilies(Graphics) to get the families for a given graphics context. Then for each font call FontFamily.IsStyleAvailable to determine support for bold, italic, etc.