窗口/网格内的 FlowDocument?
我需要在窗口/网格内托管 FlowDocument,或者换句话说,我不希望 Flowdocument 成为根元素。有人可以帮助我如何做到这一点吗?我只找到了有关如何在 FlowDocument 中托管 UIElements 的信息,但没有找到如何将 FlowDocument 放入其他内容中的信息。感谢您的任何提示!
I need to host a FlowDocument inside a Window / Grid or in other words I don't want the Flowdocument to be the root element. Can somebody please help me how this can be done? I only found informations on how to host UIElements inside a FlowDocument, but not how to place the FlowDocument inside something else. Thanks for any hint!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 FlowDocumentViewer 或其继承者。如果您需要编辑此文档 - 使用 RichTextBox。
Use FlowDocumentViewer or it inheritors. If you need edit this document - use RichTextBox.
WPF 应用程序框架 (WAF)ViewModel 示例应用程序strong> 展示了如何在 UserControl 中托管 FlowDocument。
请查找 EmailClient.Presentation\Views\ShellWindow\MessageContentView.xaml 文件。
The ViewModel sample application of the WPF Application Framework (WAF) shows how to host a FlowDocument inside a UserControl.
Please look for the EmailClient.Presentation\Views\ShellWindow\MessageContentView.xaml file.