如何获取RichTextBox的内容?
我想获取 RichTextBox 的内容作为包含 XAML 的字符串。
我看到一些帖子显示了与另一个类的不同解决方案,用于解析 xaml 并将其转换为字符串构建器。但是,我的目标是直接生成 XAML。
I would like to get the content of a RichTextBox as a string which contains the XAML.
I seen some posts which show differents solutions with another class for parsing the xaml and transforms it into a stringbuilder. But, my goal is to have the XAML directly generated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
RC版本,增加RichTextBox如:
The RC version, increase the RichTextBox like :
在运行时,有 Paragraph、Run 等对象。没有 XAML。
您可以序列化 Blocks 属性,但这不会为您提供真正的 XAML。
您被迫分析内容并动态生成 XAML。
At run-time, there are objects like Paragraph, Run, etc. There is no XAML.
You could serialize the Blocks property, but this will not give you real XAML.
You are forced to analyze the contents and generate the XAML on the fly.