将 RTF 标记的文本添加到代码隐藏中的 flowdocment

发布于 2024-10-14 21:09:23 字数 590 浏览 7 评论 0原文

我将富文本存储在具有完整 RTF 标记的数据库中,如下所示:

{\rtf1\fbidis\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Tahoma;}}
{\colortbl ;\red0\green0\blue0;}
\viewkind4\uc1\pard\ltrpar\cf1\f0\fs17 Email sent on 10/1...

我希望将此文本设为 WPF FlowDocument 的源。当我直接将此文本添加到段落中时,我会看到文档中的所有标记。

   fd = New FlowDocument

   p = New Paragraph()
   p.FontSize = 12
   p.Foreground = Brushes.Black
   p.FontWeight = FontWeights.Normal
   p.Inlines.Add(New Run(vVariableWithRTFTagsInIt))
   fd.Blocks.Add(p)

如何告诉 FlowDocument 我正在添加标记的 RTF?谢谢。

I have rich text stored in a database with full RTF tagging, like so:

{\rtf1\fbidis\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fnil\fcharset0 Tahoma;}}
{\colortbl ;\red0\green0\blue0;}
\viewkind4\uc1\pard\ltrpar\cf1\f0\fs17 Email sent on 10/1...

I want to make this text the source for a WPF FlowDocument. When I add this text to a paragraph directly, I see all of the tagging in the document.

   fd = New FlowDocument

   p = New Paragraph()
   p.FontSize = 12
   p.Foreground = Brushes.Black
   p.FontWeight = FontWeights.Normal
   p.Inlines.Add(New Run(vVariableWithRTFTagsInIt))
   fd.Blocks.Add(p)

How do I tell the FlowDocument that I'm adding tagged RTF? Thank you.

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

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

发布评论

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

评论(1

蛮可爱 2024-10-21 21:09:23

显然,许多 FlowDocument 操作都是使用 TextRange 类完成的。
查看 TextRange.Load 方法

TextRange range = new TextRange(fd.ContentStart, fd.ContentEnd);
range.Load(stream, DataFormats.Rtf);

Apparently, lots of FlowDocument operations are done using TextRange class.
Check out TextRange.Load Method:

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