Click here to Skip to main content
15,886,518 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to Use RichtextBox With Images in Silverlight to save xml file please ,help me..
Posted
Comments
Sebastian T Xavier 23-Jul-12 6:45am    
Have googled?

1 solution

What about this on your xaml file:
XML
<RichTextBox>
    <Paragraph>
        I want to show an image here!
        <InlineUIContainer>
            <Image Source="./image1.jpg" Height="350" Width="350" />
        </InlineUIContainer>            
    </Paragraph>
</RichTextBox>

Save the content of your RichTextBox to a xml file and retrieve as is when you need to read it.

Hope it helps.

Regards.
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900