Reputation: 175
I need Textbox to display both image and text, like a RichTextBox in WPF, but in windows 8.1 and windows phone 8.1 we don't have that control, so any toolkit will support that.
<RichTextBox>
<Paragraph>
Content Text
<InlineUIContainer>
<Image Source="img.png" Height="50" Width="50" />
</InlineUIContainer>
</Paragraph>
</RichTextBox>
Upvotes: 0
Views: 44
Reputation: 36
Use RichEditBox for your purpose. This control supports image inserting, text formatting like underline, bold and much more.
Upvotes: 0