是否可以像 html 一样在 xaml 中提供图像的 url 引用?

发布于 2024-11-19 09:22:24 字数 201 浏览 6 评论 0原文

我正在 WPF 中的 RichTextBox 上工作,我想知道我是否可以有 url 引用,就像我们在

<img src="http://AnyWebsite.com/example.png" />

xaml 中的 html 中一样(我将其转换为 rtf 并将其存储到数据库中)

谢谢您的帮助!

I am working on RichTextBox in WPF and i would like to know if i can have url references something like we have in html

<img src="http://AnyWebsite.com/example.png" />

in xaml ( which i will be converting to rtf and storing it into the DB )

Thank you for your help!

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

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

发布评论

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

评论(2

蓝色星空 2024-11-26 09:22:24

这是有可能的。

根据您的评论,我正在编辑我之前的答案。此链接将帮助您实现您想要的目标,您将需要创建一个自定义转换器类。

http://blog.davidsandor.com/post/2010/05/12/How-To-WPF-Databind-a-URL-URI-to-an-Image-control.aspx

It's possible.

Based on your comment I am editing my earlier answer. This link will help you achieve what you want, you will need to create a custom converter class.

http://blog.davidsandor.com/post/2010/05/12/How-To-WPF-Databind-a-URL-URI-to-an-Image-control.aspx

浪菊怪哟 2024-11-26 09:22:24

在这种情况下,我建议使用 FlowDocument 而不是 RichTextBox,因为您想要同时显示图像和文本。

详细信息您可以参考msdn中的文章

I would recommend using FlowDocument instead of RichTextBox in this case as you want to display images and text togather.

For details you may refer to the article in msdn

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