繁体   English   中英

为什么 TextRenderer.MeasureText 不能正常工作?

[英]Why doesn't TextRenderer.MeasureText work properly?

我想测量给定可用画布宽度的文本高度。 我传入的文本很长,我知道会自动换行。 为此,我称之为:

using System.Windows.Forms;
...
string text = "Really really long text that is sure to wrap...";
Font font = new Font("Arial", 14);
Size canvas = new Size(1100, 850);
Size size = TextRenderer.MeasureText(text, font, canvas);

无论我为画布传入什么,它总是为size.Height返回 14。

我错过了一些简单的东西吗?

请使用TextFormatFlags度量参数,如下所示:

Size size = TextRenderer.MeasureText(text, font, canvas, TextFormatFlags.WordBreak);

DimitryG 的解决方案似乎很好用,但前提是没有足够大的词来填充整行。 如果存在这样的词,则宽度将大于建议的宽度。 在这种情况下有标志TextFormatFlags.EndEllipsis ,但是我没有设法以某种方式组合标志所以输出是正确的(如果我使用TextFormatFlags.WordEllipsis | TextFormatFlags.WordBreak宽度是正确的,但高度不是在出现单词省略号时更新,这意味着大单词将被修剪,但高度将与未修剪的高度相同)。 我还尝试了标志TextFormatFlags.EndEllipsis但没有结果。

所以在有人说清楚之前,我建议使用TextBox进行自动换行,然后将TextBox的行数与Font的高度相乘。

代码:

int MeasureMultilineTextHeigh(string text, Font font, int proposedWidth)
{
    // Exception handling.

    TextBox textBox = new TextBox()
    {
        Multiline = true,
        BorderStyle = BorderStyle.None,
        Width = proposedWidth,
        Font = font,
        Text = text,
    };

    int lineCount = textBox.GetLineFromCharIndex(int.MaxValue) + 1;
    int fontHeight = TextRenderer.MeasureText("X", font).Height;

    return lineCount * fontHeight;
}

然而,这种方法有一个问题:当且仅当TextBox Multiline属性设置为true ,每个Font都会有自己的左右填充。 有关更多详细信息,请参阅此 stackoverflow.com 问题此 social.msdn.microsoft.com 问题 所以这意味着在某些情况下返回的值可能比预期的要大。 解决这个问题可以使用SetPadding函数去除padding(可以在第一个问题中找到该方法作为答案),代码:

private const int EM_SETRECT = 0xB3;

[DllImport(@"User32.dll", EntryPoint = @"SendMessage", CharSet = CharSet.Auto)]
private static extern int SendMessageRefRect(IntPtr hWnd, uint msg, int wParam, ref RECT rect);

[StructLayout(LayoutKind.Sequential)]
private struct RECT
{
    public readonly int Left;
    public readonly int Top;
    public readonly int Right;
    public readonly int Bottom;

    private RECT(int left, int top, int right, int bottom)
    {
        Left = left;
        Top = top;
        Right = right;
        Bottom = bottom;
    }

    public RECT(Rectangle r) : this(r.Left, r.Top, r.Right, r.Bottom) { }
}

public void SetPadding(TextBox textBox, Padding padding)
{
    var rect = new Rectangle(padding.Left, padding.Top, textBox.ClientSize.Width - padding.Left - padding.Right, textBox.ClientSize.Height - padding.Top - padding.Bottom);
    RECT rc = new RECT(rect);
    SendMessageRefRect(textBox.Handle, EM_SETRECT, 0, ref rc);
}

int MeasureMultilineTextHeigh(string text, Font font, int proposedWidth)
{
    // Exception handling.

    TextBox textBox = new TextBox()
    {
        Multiline = true,
        BorderStyle = BorderStyle.None,
        Width = proposedWidth,
        Font = font,
    };
    SetPadding(textBox, Padding.Empty);
    textBox.Text = text;

    int lineCount = textBox.GetLineFromCharIndex(int.MaxValue) + 1;
    int fontHeight = TextRenderer.MeasureText("X", font).Height;

    return lineCount * fontHeight;
}

需要使用语句:

using System;
using System.Windows.Forms;
using System.Drawing;
using System.Runtime.InteropServices;

我希望这有帮助。 如果我犯了任何错误,对不起我的英语。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM