简体   繁体   中英

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>

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM