Suresh Balaraman
Suresh Balaraman

Reputation: 175

Smiley support TextBox in windows phone winrt 8.1

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

Answers (1)

HesamM
HesamM

Reputation: 36

Use RichEditBox for your purpose. This control supports image inserting, text formatting like underline, bold and much more.

Upvotes: 0

Related Questions