如何在 WPF 中列出等宽(固定宽度)字体

发布于 2024-10-15 08:07:49 字数 511 浏览 2 评论 0原文

我需要将字体选择器添加到我的 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 技术交流群。

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

发布评论

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

评论(2

指尖上的星空 2024-10-22 08:07:49

也许您可以通过创建具有相同名称的 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.

哥,最终变帅啦 2024-10-22 08:07:49
var monoSpacedFonts = Fonts.SystemFontFamilies
            .Where(f => f.IsMonoSpace());

有点janky并且没有经过彻底测试,但似乎可以使用以下扩展方法:


using System.Globalization;
using System.Windows;
using System.Windows.Media;

namespace StackOverflow;

internal static class ExtensionMethods {

    internal static bool IsMonoSpace(this FontFamily @this) {
        var result = true;
        double? widthComparison = null;
        foreach (var typeface in @this.GetTypefaces()) {

            foreach (var sample in new char[] { '!', 'W' }) {
                var actualWidth = sample.DerivedWidth(typeface);
                widthComparison = widthComparison ?? actualWidth;
                if (widthComparison != actualWidth) {
                    result = false;
                    goto Discontinue;
                }

            }
        }
    Discontinue:
        return result;
    }

    internal static double DerivedWidth(this char @this, Typeface typeface, double emSize = 16.0d)
        => new FormattedText(
            @this.ToString(),
            CultureInfo.CurrentCulture,
            FlowDirection.LeftToRight,
            typeface,
            emSize,
            Brushes.Black
            ).Width;

}
var monoSpacedFonts = Fonts.SystemFontFamilies
            .Where(f => f.IsMonoSpace());

A bit janky and not thoroughly tested but seems to work using the following Extension Methods:


using System.Globalization;
using System.Windows;
using System.Windows.Media;

namespace StackOverflow;

internal static class ExtensionMethods {

    internal static bool IsMonoSpace(this FontFamily @this) {
        var result = true;
        double? widthComparison = null;
        foreach (var typeface in @this.GetTypefaces()) {

            foreach (var sample in new char[] { '!', 'W' }) {
                var actualWidth = sample.DerivedWidth(typeface);
                widthComparison = widthComparison ?? actualWidth;
                if (widthComparison != actualWidth) {
                    result = false;
                    goto Discontinue;
                }

            }
        }
    Discontinue:
        return result;
    }

    internal static double DerivedWidth(this char @this, Typeface typeface, double emSize = 16.0d)
        => new FormattedText(
            @this.ToString(),
            CultureInfo.CurrentCulture,
            FlowDirection.LeftToRight,
            typeface,
            emSize,
            Brushes.Black
            ).Width;

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文