I am looking for a free WYSIWYG editor control to be used in a Winform application. The applications primary language is VB but using C# is also an option. To clarify I need a rich text editor control that has a formatting bar. I have looked all over the web and the only options I can find are expensive control packages that have more than I need. I am not adverse to creating my own version of this control, it would just be nice to find a free and open alternative.
A:
Actually it's very easy to write your own based on the RichTextBox control.
I would go that way for sure. Your biggest problem will be the icons for the edit bar.
Check this one for starter.
Biri
2008-11-03 15:01:00
Thank you this gave me a great starting point for building my own RichTextBox control.
John Chuckran
2008-11-05 16:07:03
That's exactly what I did. But I embedded tinyMce http://peitor.blogspot.com/2010/01/winforms-html-editor-control-source.html
Peter Gfader
2010-02-08 10:50:52
+2
A:
In this scenario, starting with CodeProject articles seems the easiest:
http://www.codeproject.com/KB/edit/editor_in_windows_forms.aspx -- Not my first recommendation, but perhaps of use if you want HTML.
torial
2008-11-03 15:06:45
A: