FlowDocument在预览中显示工具提示,但运行时不显示吗?

时间:2019-07-29 14:15:02

标签: wpf user-controls flowdocument

我有一个带有FlowDocument的用户控件。在预览中,我可以看到工具提示,但是当我运行应用程序时,仅当我将宽度设置得小得多(小于用户控件宽度的一半)时,它才会显示。

我试图查看用户控件的显示方式是否有问题,因此我在UC的每个角落放置了一个标签,当我运行该应用程序时,它们都会显示出来。但是,如果我从底部显示未放置标签和流程文档,则该标签不显示。

<FlowDocumentReader>
  <FlowDocument>
    <Paragraph>
      <Bold>Some bold text in the paragraph.</Bold>
      Some text that is not bold.
    </Paragraph>

    <List>
      <ListItem>
        <Paragraph>ListItem 1</Paragraph>
      </ListItem>
      <ListItem>
        <Paragraph>ListItem 2</Paragraph>
      </ListItem>
      <ListItem>
        <Paragraph>ListItem 3</Paragraph>
      </ListItem>
    </List>
  </FlowDocument>
</FlowDocumentReader>;

这是Microsoft页面上的代码,因此我不认为这是问题所在。

0 个答案:

没有答案