I 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?
I need and editable component that supports these 2 features:
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.