3

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?

Kugel
  • 19,354
  • 16
  • 71
  • 103

1 Answers1

3

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.

Community
  • 1
  • 1
Martin Harris
  • 28,277
  • 7
  • 90
  • 101