gpt4 book ai didi

wpf - 我们如何在 WPF 中将 .rtf 或 .doc 显示为流程文档?

转载 作者:行者123 更新时间:2023-12-02 09:06:15 26 4
gpt4 key购买 nike

它用于应用程序的帮助部分。我正在考虑放置 flowdocumentReader 来显示帮助文档。但是是否可以在 Flowdocument 中显示 .rtf 或任何 .doc?或者是否需要在 Xaml 中创建流文档。请帮忙。

谢谢

最佳答案

这些行中的内容将为您完成工作,其中 documentPath 是您的 rtf 文件路径:

FileStream fileStream = File.Open(documentPath, FileMode.Open, FileAccess.Read, FileShare.Read);

FlowDocument flowDocument = new FlowDocument();

TextRange textRange = new TextRange(flowDocument.ContentStart, flowDocument.ContentEnd);

textRange.Load(fileStream , DataFormats.Rtf);

但是请添加错误检查代码。

关于wpf - 我们如何在 WPF 中将 .rtf 或 .doc 显示为流程文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1623054/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com