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!

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted

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

link|improve this answer
thank you for the response but i am looking for independent references rather than an image in the project or resource – Kathy Jul 11 '11 at 5:27
edited my answer, Kathy. Just see if this solves your problem. – Mamta Dalal Jul 12 '11 at 11:53
thank you Mamta :) – Kathy Jul 27 '11 at 21:57
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.