如何获取RichTextBox的内容?

发布于 2024-08-23 09:29:55 字数 114 浏览 6 评论 0原文

我想获取 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 技术交流群。

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

发布评论

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

评论(2

安穩 2024-08-30 09:29:55

RC版本,增加RichTextBox如:

string richText = MyRichContent.Xaml;

The RC version, increase the RichTextBox like :

string richText = MyRichContent.Xaml;
坏尐絯℡ 2024-08-30 09:29:55

在运行时,有 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.

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