如何在 WPF 中列出等宽(固定宽度)字体
我需要将字体选择器添加到我的 WPF 文本编辑器中。我正在调整此字体选择器< /a>.
但是,它列出了所有已安装的字体。我只需要一个固定宽度(等宽)字体的列表。
如何检查给定的 System.Windows.Media.FontFamily 是否是固定宽度字体?
有一个使用 System.Drawing.FontFamily 的解决方案使用 System.Drawing.FontFamily 但这些字体与 WPF 并不完全兼容,我正在改编的代码使用 System.Windows.Media.FontFamily。
I need to add font chooser to my WPF text editor. I'm adapting this font chooser.
However, it lists all the installed fonts. I only need a list of fixed-width (monospace) fonts.
How do I check if a given System.Windows.Media.FontFamily is a fixed-width font?
There is a solution that uses System.Drawing.FontFamily but those fonts are not exactly compatible with WPF and the code I'm adapting uses System.Windows.Media.FontFamily.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您可以通过创建具有相同名称的 System.Drawing.Font 并从那里使用 inteop 和 LOGFONT 来过滤 System.Windows.Media.FontFamily 列表。
这是一个可怕的黑客,但我相信它在大多数情况下都有效(如果您只使用系统上安装的字体,System.Windows.Media.FontFamily和System.Drawing.FontFamily列表应该大部分匹配)
使用类似的东西来获取字体由于 WPF 和 GDI 之间的字体渲染器存在差异,大小调整信息或有关高级字体属性的信息将完全无用 - 但对于字体的基本属性(例如固定宽度),我希望这应该有效。
Maybe you can filter the System.Windows.Media.FontFamily list by creating a System.Drawing.Font with the same name and use inteop and LOGFONT from there.
This is a horrible hack but I believe it will work in most cases (if you only use fonts installed on the system the System.Windows.Media.FontFamily and System.Drawing.FontFamily lists should mostly match)
Using something like this to get font sizing information or information about advanced font properties would be completely useless due to the differences in the font renderer between WPF and GDI - but for basic properties of the font like being fixed-width I expect this should work.
有点janky并且没有经过彻底测试,但似乎可以使用以下扩展方法:
A bit janky and not thoroughly tested but seems to work using the following Extension Methods: