Click here to Skip to main content
6,594,932 members and growing! (15,171 online)
Email Password   helpLost your password?
Desktop Development » Edit Controls » General     Intermediate

A Windows Forms based text editor with HTML output

By kevin delafield

A Windows Forms based text editor with HTML output, implemented with a browser control in edit mode.
C# 2.0, Windows, .NET 2.0VS2005, Dev
Posted:12 Sep 2006
Updated:25 Nov 2006
Views:235,956
Bookmarked:208 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
76 votes for this article.
Popularity: 9.00 Rating: 4.79 out of 5
1 vote, 1.3%
1

2
2 votes, 2.7%
3
6 votes, 8.0%
4
66 votes, 88.0%
5

Sample Image - editor.png

Introduction

A while ago, I was working on a chat application where one of the chat clients was web based and written with ASP.NET 2.0. The other chat client was a Windows Forms based .NET application written in C#. I needed a rich text editor for my WinForms client that could output HTML, so that the ASP.NET client could display the formatting from the WinForms client. This was ruled out while using the RTF text box.

The solution I worked out was to use a WebBrowser control in edit mode within my WinForms client. Formatting buttons on a toolbar above the web browser are synchronized to the current selection in the WebBrowser control.

This article explains solutions to most of the issues involved in building an editor control from a WebBrowser control. I won't go into everything, as the source code isn't that difficult to browse. But, I do cover some of the tricks necessary to get this to work.

Setting Design Mode

Applying design mode and establishing an editing template for the document occurs automatically when using the component. But, for reference, here is a brief explanation of how it works.

Applying design mode requires using a COM interface: adding a reference to "Microsoft HTML Object Library", which resolves to MSHTML, and adding a 'using' of 'MSHTML'.

It is necessary to add a body to the control before you can apply changes to the DOM document. To do this, you can simply apply some text to the DocumentText property of the WebBrowser control.

webBrowser1.DocumentText = "<html><body></body></html>"

Next, get a reference to the new DomDocument COM interface, and set the design mode to "On".

IHTMLDocument2 doc =
webBrowser1.Document.DomDocument as IHTMLDocument2;
doc.designMode = "On";

Finally, I replace the context menu for the web browser control so the default IE browser context menu doesn't show up.

webBrowser1.Document.ContextMenuShowing += 
new HtmlElementEventHandler(Document_ContextMenuShowing);

The browser is now in design mode, with a custom method to display the context menu.

Applying Formatting

You can apply formatting and editor functions to a browser control in design mode with the ExecCommand method on browser.Document.

Here are several examples:

public void Cut()
{
    webBrowser1.Document.ExecCommand("Cut", false, null);
}
public void Paste()
{
    webBrowser1.Document.ExecCommand("Paste", false, null);
}
public void Copy()
{
    webBrowser1.Document.ExecCommand("Copy", false, null);
}

Some commands will toggle the formatting state of the current selection.

public void Bold()
{
    webBrowser1.Document.ExecCommand("Bold", false, null);
}

public void Italic()
{
    webBrowser1.Document.ExecCommand("Italic", false, null);
}

Synchronizing Formatting Buttons with Selected Text

This is a bit more tricky than applying formatting commands to the browser control. I literally query the state of the browser editor selection every 200 ms, and set the toolbar formatting buttons based on this. 

private void timer_Tick(object sender, EventArgs e)
{
    SetupKeyListener();
    boldButton.Checked = IsBold();
    italicButton.Checked = IsItalic();
    underlineButton.Checked = IsUnderline();
    orderedListButton.Checked = IsOrderedList();
    unorderedListButton.Checked = IsUnorderedList();
    linkButton.Enabled = SelectionType == SelectionType.Text;

    UpdateFontComboBox();
    UpdateFontSizeComboBox();
    if (Tick != null) Tick();
}

You'll notice that there is a Tick event that is fired at the end of the timer's tick event. External components can subscribe to this event to update the state of their GUI. For example, they may update the Enabled state of cut/copy/paste/undo/redo buttons based on the state of the Editor control.

I do this by using the COM document interface retrieved from the WebBrowser control with:

IHTMLDocument2 doc = webBrowser1.Document.DomDocument as IHTMLDocument2;

Then I use queryCommandState to determine the state of the current selection:

public bool IsBold()
{
    return doc.queryCommandState("Bold");
}

public bool IsItalic()
{
    return doc.queryCommandState("Italic");
}

public bool IsUnderline()
{
    return doc.queryCommandState("Underline");
}

The link button and font controls are managed in a similar way, but I'll leave that for you to check out in the code.

Focusing

Focusing the control isn't necessarily simple either. The WebBrowser control itself will not accept focus. Neither will the WebBrowser control's document. But, the body will focus, assuming there is a body element on the control.

private void SuperFocus()
{
    if (webBrowser1.Document != null && 
        webBrowser1.Document.Body != null)
      webBrowser1.Document.Body.Focus();
}

Of course, you never need to call this method directly. Calling the Focus method on the control will place the focus on the editor control containing the WebBrowser control. The editor control will transfer focus to the WebBrowser's document body automatically, when it receives the GotFocus event.

Retrieving Text or HTML

The BodyHtml and BodyText methods retrieve the body HTML and text, respectively.

Linking to the Component Assembly

In Visual Studio 2005, you can link to an assembly (add a reference), even if the assembly is an executable. The editor is written as a component embedded in a form, so you can add this component to the control palette and drag and drop into your application. The control's name is Editor, under namespace Design.

Conclusion

The .NET 2.0 WebBrowser control can effectively be used as a text editor. This is useful when you need an editor control that can be used as an HTML editor. The implementation is not completely straightforward in some areas. This article attempts to show some of the tricks necessary to get it to work.

History

  • 10/04/2006 - various bug fixes and design updates / designer support.
  • 10/19/2006 - more bug fixes and more designer support.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

kevin delafield


Member

Location: United States United States

Other popular Edit Controls articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 260 (Total in Forum: 260) (Refresh)FirstPrevNext
GeneralThank you very much dear Pinmemberkumar4u4u6:58 21 Oct '09  
Generalhow can i eliminate Pingrouphasan_um_ferdowsi22:33 14 Oct '09  
QuestionImage resizing in the control Pinmembergerokee2:42 4 Aug '09  
AnswerRe: Image resizing in the control Pinmembergerokee3:53 4 Aug '09  
Generalvb.net PinmemberYuan Marquez21:16 29 Jul '09  
GeneralYour code will not work anymore under Vista.(in am using vista 64 bit) PinmemberDiing22:49 7 Jul '09  
GeneralHow to Implement spell checking? Pinmemberbkv795:42 6 Jul '09  
QuestionGetting the selected element on right click Pinmembersmitch12817:26 5 Jul '09  
QuestionDocumentText value gets modified following assignment in Form Load event? PinmemberDdoubleD1:58 27 Jun '09  
Answeredit html link Pinmemberdnk.nitro6:45 27 May '09  
GeneralRe: edit html link Pinmemberskyline9210:27 20 Jun '09  
QuestionLimiting the amount of text in the webbrowser control PinmemberGil Rodriguez5:12 27 May '09  
Generalthank you Pinmemberkhaled-mcsd23:34 15 May '09  
QuestionGot "DRAGDROP_E_NOTREGISTERED" Exception PinmemberJati Indrayanto18:28 3 May '09  
AnswerRe: Got "DRAGDROP_E_NOTREGISTERED" Exception Pinmembergerokee2:30 4 Aug '09  
AnswerRe: Got "DRAGDROP_E_NOTREGISTERED" Exception PinmemberGoobang18:53 14 Sep '09  
GeneralHow can I position the cursor in the control? Pinmembergreg_quinn3:00 1 May '09  
GeneralNew Document Pinmemberjammmie9991:50 10 Apr '09  
GeneralUpdated code PinmemberAtlence11:13 7 Apr '09  
GeneralControl für use with VS2003 possible ??? PinmembersigiK2:57 18 Mar '09  
GeneralThank you Pinmemberalperuslu12:41 9 Mar '09  
Questioneditor PinmemberMember 387334321:12 5 Mar '09  
GeneralPrinting with webbroser editor PinmemberRenoMarseille23:11 30 Jan '09  
GeneralEnter Event Pinmembertieutue7:00 18 Dec '08  
GeneralRe: Enter Event PinmemberRoonda18:10 1 Apr '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 25 Nov 2006
Editor: Smitha Vijayan
Copyright 2006 by kevin delafield
Everything else Copyright © CodeProject, 1999-2009
Web12 | Advertise on the Code Project