I am working on a WPF application where we need some rich HTML editing capabilities. An application usually generates some intitial HTML (tables, etc.) and presents it to the user, who, in turn, can edit before sending the HTML back to the system. It would be very nice if the user could combine and delete cells in tables.
I'm really looking for a WYSIWYG editor, like tinyMCE - for WPF only.
So far I have been experimenting with converting HTML to Flow Document , with which the user can interact with the Extended WPF Toolkit RichTextBox , first converting HTML to XAML .
I am not very happy with the results, since the XAML code cannot render HTML correctly.
I feel that someone must have been struggling with the same problems in front of me. Any suggestions?
Thanks!
source share