如何在 silverlight 中将 Xaml 转换为 Rtf?
我想知道如何在 silverlight 中将 Xaml 转换为 Rtf。
我正在研究 RichTextBox,我手头有 Xaml,我想将其转换为 rtf 并将其保存到数据库。
那么如何在 Silverlight 中将 Xaml 转换为 Rtf 呢? (TextRange
在 Silverlight 中不起作用)
I would like to know how to convert Xaml to Rtf in silverlight.
I am working on RichTextBox and i have the Xaml in hand and i would like to convert it to rtf and save it to the DB.
so how do I convert Xaml to Rtf in Silverlight? (TextRange
doesn't work in Silverlight)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你尝试过NRTFTree吗?
这是一个可以构建 RTF 的 .net 库
在 codeplex 中检查它。
http://www.codeproject.com/KB/string/nrtftree.aspx
Did you try NRTFTree?
This is a .net lib which can build RTF
check it in codeplex.
http://www.codeproject.com/KB/string/nrtftree.aspx
@Gabe:WPF RTB 不支持 SL 中定义的所有类,因此如果您尝试将 SL RTB 生成的 xaml 字符串转换为 WPF RTB 中的 rtf 字符串,
System.Windows.Markup.XamlParseException
可能会抛出异常!
@Gabe:The WPF RTB does NOT support all the classes defined in SL, so if you try to convert a xaml string generated by SL RTB to a rtf string in a WPF RTB, an
System.Windows.Markup.XamlParseException
exception may be thrown!