FlowDocument 中同一行上的两个块

发布于 2024-10-11 17:23:33 字数 179 浏览 1 评论 0原文

是否可以在 FlowDocument 中的同一行上渲染两个块(例如,两个部分)?

它似乎总是从下一行开始第二部分,我似乎无法解决这个问题。

使用 InlineUIContainer 的包装器可能可以工作,但是我应该在 InlineUIContainer 中放入什么?我需要渲染数万条这样的线,所以它需要相对高效。

Is it possible to have two blocks (say, two Sections) rendered on the same line in a FlowDocument?

It seems to always start the second section on the next line and I can't seem to work around this.

A wrapper using InlineUIContainer might work, but what do I put in the InlineUIContainer? I need to render tens of thousands of these lines, so it needs to be relatively efficient.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

财迷小姐 2024-10-18 17:23:33

听起来您应该使用表格

例如,

<Table>
  <Table.Columns>
    <TableColumn/>
    <TableColumn/>
  </Table.Columns>
  <TableRowGroup>
    <TableRow>
      <TableCell>
        <Section><Paragraph>First section</Paragraph></Section>
      </TableCell>
      <TableCell>
        <Section><Paragraph>Second section</Paragraph></Section>
      </TableCell>
    </TableRow>
  </TableRowGroup>
</Table>

您可以在每次需要时重复整个表,或者每次都将行添加到行组。

我还没有对几万张表或者几万行的表做过任何性能测试。我已经访问了单个流文档中大约一千个表的范围,并且 FlowDocumentReader 在该级别上保持了良好的性能。

Sounds like you should use a table.

E.g.

<Table>
  <Table.Columns>
    <TableColumn/>
    <TableColumn/>
  </Table.Columns>
  <TableRowGroup>
    <TableRow>
      <TableCell>
        <Section><Paragraph>First section</Paragraph></Section>
      </TableCell>
      <TableCell>
        <Section><Paragraph>Second section</Paragraph></Section>
      </TableCell>
    </TableRow>
  </TableRowGroup>
</Table>

You could either repeat the whole table every time you need this, or just add rows to the row group every time.

I haven't done any performance testing with tens of thousands of tables or a table with tens of thousands of rows. I have go to the range of about a thousand tables in a single flow document and the FlowDocumentReader maintains good performance up to that level.

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