3

我找到了Runor ParagraphFlowDocument现在我需要知道它的高度

IE

while (navigator.CompareTo(flowDocViewer.Document.ContentEnd) < 0)
  {
      TextPointerContext context = navigator.GetPointerContext(LogicalDirection.Backward);
      Run run = navigator.Parent as Run;
      // I need to get HEIGHT of Run in pixels somehow

真的可以做到吗?

在此处输入图像描述

谢谢!

4

1 回答 1

7

我正在使用的一个小功能。输入是一个包含 Section 的字符串。您可以轻松渲染其他块元素,例如段落。

您也可以省略 Parse 方法的第二个参数。

诀窍不是测量段落,而是测量包含 RichTextBox 的 ViewBox。这是实际呈现 Flowdocument 所必需的。ViewBox 动态获取 rtb 的大小。也许你甚至可以在没有 ViewBox 的情况下做到这一点。我花了一些时间来解决这个问题,它对我有用。

请注意WidthRichTextBox设置为double.MaxValue。这意味着当您要测量单个段落时,它必须非常长,否则所有内容都在一行中。所以这只有在你知道输出设备的宽度时才有意义。因为这是一个 FlowDocument,所以没有宽度,它会流动;)我用它来对我知道纸张大小的 FlowDocument 进行分页。

返回的高度是与设备无关的单位。

private double GetHeaderFooterHeight(string headerFooter)
        {

            var section = (Section)XamlReader.Parse(headerFooter, _pd.ParserContext);
            var flowDoc = new FlowDocument();
            flowDoc.Blocks.Add(section);

            var richtextbox = new RichTextBox { Width = double.MaxValue, Document = flowDoc };
            var viewbox = new Viewbox { Child = richtextbox };

            viewbox.Measure(new Size(double.PositiveInfinity, double.PositiveInfinity));
            viewbox.Arrange(new Rect(viewbox.DesiredSize));

            var size = new Size() { Height = viewbox.ActualHeight, Width = viewbox.ActualWidth };

            return size.Height;
        }
于 2013-05-15T13:30:02.647 回答