|
Hi all!
I would like to add a control to my C# app, which allows users to edit HTML. This editor must be a visual tool, like CKEditor, but it is important to say that the app which I am developing is not a web based one.
Does anyone know some controls which I can use?
Thank you in advance! Gustavo | | gborgesbr Thursday, September 03, 2009 11:59 AM |
Use webBrowser control andthis code to make it Editable.
HtmlDocument htmldoc = webBrowser1.Document;
htmldoc.ExecCommand(
"EditMode", true, null);
Please mark the post as answer if it is helpfull to you because it boosts the members to answer more and more.
- Proposed As Answer by_SuDhiR_ Thursday, September 03, 2009 1:13 PM
- Marked As Answer byLing WangMSFT, ModeratorSunday, September 13, 2009 9:08 AM
-
| | _SuDhiR_ Thursday, September 03, 2009 12:48 PM | Hi,
Please refer to the following article. This is html editor. Hope this helps.
http://beta.codeproject.com/KB/GDI-plus/HtmlRenderer.aspx
Best regards,
Ling Wang
Please remember to click “Mark as Answer�on the post that helps you, and to click “Unmark as Answer�if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. - Marked As Answer byLing WangMSFT, ModeratorSunday, September 13, 2009 9:08 AM
-
| | Ling Wang Thursday, September 10, 2009 6:34 AM |
Use webBrowser control andthis code to make it Editable.
HtmlDocument htmldoc = webBrowser1.Document;
htmldoc.ExecCommand(
"EditMode", true, null);
Please mark the post as answer if it is helpfull to you because it boosts the members to answer more and more.
- Proposed As Answer by_SuDhiR_ Thursday, September 03, 2009 1:13 PM
- Marked As Answer byLing WangMSFT, ModeratorSunday, September 13, 2009 9:08 AM
-
| | _SuDhiR_ Thursday, September 03, 2009 12:48 PM | Hi,
Please refer to the following article. This is html editor. Hope this helps.
http://beta.codeproject.com/KB/GDI-plus/HtmlRenderer.aspx
Best regards,
Ling Wang
Please remember to click “Mark as Answer�on the post that helps you, and to click “Unmark as Answer�if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. - Marked As Answer byLing WangMSFT, ModeratorSunday, September 13, 2009 9:08 AM
-
| | Ling Wang Thursday, September 10, 2009 6:34 AM |
|