In my Windows Store app, I have a RichTextColumns control containing a richtextblock that successfully loads its content from an HTML file. I can get it to show images if they are in the HTML file, but I need to:
a) Insert content (images) that are not in the HTML file to begin with (preferably from a database).
b) Have the images trigger events on press.
I'm trying to make an ebook reader that lets you create notes, which will be displayed inline in the text as icon representations.
So, how do I insert content into an existing RichTextBlock, and how do I make that content a working button?
Thanks for reading!