views:

76

answers:

1

how i integrate html text editor in windows application?

+2  A: 

The best option would be to use a commercial syntax highlighting package, such as Actipro SyntaxEditor.

You can just use a RichTextBox and do it yourself, but it is going to be more difficult to make this seem polished. There are some articles, such as the CodeProject article, which show how to extend RichTextBox for custom editing and coloring. That would be a good starting point, if you want to make your own.

If you just want a place people can type HTML in, but don't need coloring, syntax checking, etc - you can just use a RichTextBox and let the user type in the HTML.

Reed Copsey
+1 - Great article.
adatapost