WPF TextBlock在textwrapping后获取行

时间:2013-01-16 10:19:37

标签: wpf textblock fixeddocument line-count

我有FixedDocument页面,我想在其上放置TextBlock,但可能Textblock不适合页面高度。
所以我想从TextBlock生成的TextWrapping中获取行,然后创建新的TextBlock,按高度拟合并将其放在页面上。
TextBlock拥有LineCount私有财产,这意味着它在包装后有TextLines,我可以以某种方式得到它。
使用运行创建TextBlock

public TextItem(PageType pageType, Run[] runs, Typeface typeFace, double fontSize)
        : base(pageType)
{
     this.TextBlock = new TextBlock();
     this.TextBlock.Inlines.AddRange(runs);
     if (typeFace != null)
          this.TextBlock.FontFamily = typeFace.FontFamily;

     if (fontSize > 0)
           this.TextBlock.FontSize = fontSize;
     this.TextBlock.TextWrapping = TextWrapping.Wrap;   //wrapping
}

使用text:

创建TextBlock
public TextItem(PageType pageType, String text, Typeface typeFace, double fontSize)
        : base(pageType)
{
    if (typeFace == null || fontSize == 0)
        throw new Exception("Wrong textitem parameters");

    this.TextBlock = new TextBlock();
    this.TextBlock.Text = text;
    this.TextBlock.FontFamily = typeFace.FontFamily;
    this.TextBlock.FontSize = fontSize;
    this.TextBlock.TextWrapping = TextWrapping.Wrap;
    this.TextBlock.TextAlignment = TextAlignment.Justify;

    this.TypeFace = typeFace;
}

将宽度设置为TextBlock并获取DesiredSize

this.TextBlock.Width = document.CurrentPage.Content.ActualWidth;
this.TextBlock.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));

1 个答案:

答案 0 :(得分:1)

我遇到了完全相同的问题,有一段时间,我失去了希望,我认为没有解决方案。
但是,我错了,有很多解决方案(至少三个)
你是对的,其中一个人使用反射来使用LineCount属性 第二个使用它是自己的算法来获得线 而第三个,这是我的首选,有非常优雅的方式来获得你想要的结果。

请参阅这个问题,看看这三个答案 Get the lines of the TextBlock according to the TextWrapping property?

<小时/> 以下是最佳解决方案的副本(在我看来)

public static class TextUtils
{
    public static IEnumerable<string> GetLines(this TextBlock source)
    {
        var text = source.Text;
        int offset = 0;
        TextPointer lineStart = source.ContentStart.GetPositionAtOffset(1, LogicalDirection.Forward);
        do
        {
            TextPointer lineEnd = lineStart != null ? lineStart.GetLineStartPosition(1) : null;
            int length = lineEnd != null ? lineStart.GetOffsetToPosition(lineEnd) : text.Length - offset;
            yield return text.Substring(offset, length);
            offset += length;
            lineStart = lineEnd;
        }
        while (lineStart != null);
    }
}