Click here to Skip to main content
15,881,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
How to Write and Draw on Richtextbox with Image Please Help me..
Posted
Comments
Prabhakaran Soundarapandian 20-Aug-12 2:46am    
...Richtextbox with Image.... Means? can you be clear on your question..

1 solution

To create a image in RTB..

C#
<RichTextBox>
    <Paragraph>
        Displaying text with inline image
        <InlineUIContainer>
            <Image Source="./flower.jpg" Height="50" Width="50" />
        </InlineUIContainer>
    </Paragraph>
</RichTextBox>


and also have a look on Using RichTextBox in Silverlight 4[^]
 
Share this answer
 
v2

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