是否可以像 html 一样在 xaml 中提供图像的 url 引用?
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是有可能的。
根据您的评论,我正在编辑我之前的答案。此链接将帮助您实现您想要的目标,您将需要创建一个自定义转换器类。
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
在这种情况下,我建议使用 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