views:

95

answers:

1

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?

+1  A: 

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.

Martin Harris