Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rich HTML editor in WPF [closed]

I'm working on a WPF application where we need some rich HTML editing features. The application will typically generate some intitial HTML (tables and such) and present to the user, which in turn could edit before submitting the HTML back to the system. It would be really nice if the user could merge and delete cells in tables.

What I'm really looking for is a WYSIWYG editor, like tinyMCE - only for WPF.

Up until now, I've experimented with converting HTML into a Flow Document, that the user can interact with in Extended WPF Toolkit's RichTextBox, by first converting HTML to XAML.

I'm not very happy with the results, as the XAML code is unable to render the HTML correctly.

My feeling is that someone must have been struggeling with the same problems before me. Any suggestions?

Thanks!

like image 283
Olav Haugen Avatar asked Aug 31 '11 13:08

Olav Haugen


1 Answers

If you are not up to Rich Text Editor, rather pure HTML / XHTML editor then a recent release from SpiceLogic WPF HTML Editor Control could be the one that you may be interested in.

https://www.spicelogic.com/Products/WPF-HTML-Editor-Control-17

enter image description here

Yes, this editor control offers Table Manipulation from Context Menu, like Merge / Delete / Add Cells, Rows, Columns etc.

enter image description here

like image 139
Emran Hussain Avatar answered Sep 22 '22 12:09

Emran Hussain