Does WPF RichTextBox support squiggly underline and inline images?
I开发者_如何学C need and editable component that supports these 2 features:
- inline images
- squiggly underlines that can have custom collor (different to text above them).
Does WPF RichTextBox support that? If not, what does?
The RichTextBox displays FlowDocuments which do support inline images through the use of a BlockUIContainer. They don't support squiggly underlines by default, but you can create a custom style as shown here.
精彩评论