I would like to update my Windows Forms application to provide the following features:
- spellchecking
- limited text formatting: bold, italics, bulleted lists
Ideally, formatted text could be obtained in a simple text-based way to create reports using tools that do not support formatting, but can also be displayed as HTML for tools that support HTML tags when rendering text.
It seems to me that WPF RichTextBox will provide this functionality. What is the best way to enable it? Could you suggest other alternatives?
source share