Click here to Skip to main content
15,860,943 members
Articles / Desktop Programming / Windows Forms

A Professional HTML Renderer You Will Use

Rate me:
Please Sign up or sign in to vote.
4.91/5 (205 votes)
29 Jan 2009BSD4 min read 731.4K   23.3K   530   194
100% managed code that draws HTML on any device

(See history for list of changes.) 

HtmlDemo

Introduction

This is a library of 100% managed code that draws beautifully formatted HTML. It comes along with three WinForms controls:

  • HtmlPanel
  • HtmlLabel
  • HtmlTooltip

And a static method ready to draw HTML:

  • C#
    HtmlRenderer.Render(Graphics g, string html, RectangleF area, bool clip) 

Note: The drawing engine is based on the CSS Level 2 specification.

Background

For years, I have been planning for a project like this. I prepared myself quite well. I went through the entire CSS Level 2 specification along with the HTML 4.01 specification.

One of the most interesting things I found is this: Drawing HTML is no more than laying out a bunch of boxes with borders margins and paddings. Once you overpass this paradigm, everything else is to help the code actually place the boxes on the right place, and then paint the string each box contains.

Imagine the power that drawing full-rich-formatted HTML on your controls can give to your applications. Use bold when you need it, italics on every message, and borders and fonts as you may like or need everywhere on the desktop application. One of the first projects where I will use it is on the tooltips of my Ribbon Project.

Although I have not tested it on mono yet, there should be no problem at all, since all of the code in the library is managed code and the methods it uses to paint are quite basic. It draws lines, rectangles, curves and text.

For now, the render looks really nice. Sometimes it can fool you to think you're using a real Web browser, trust me, download the demo, it is just an EXE and a DLL.

Using the Code

The library locates the code under the System.Drawing.Html namespace. The controls that render HTML are under the System.Windows.Forms namespace.

The renderer follows the CSS Box Model. Box model is nothing but a tree of boxes, just as the tree of HTML, each of these boxes is represented by a very used class called CssBox. The start node is represented by the class InitialContainer.

All the known CSS properties apply to each of these boxes. Each box may contain any number of child boxes and just one parent. The only box that has no parent at all is the so called Initial Container.

A typical use of an Initial Container to draw HTML would look like this:

C#
//Create the InitialContainer
InitialContainer c = new InitialContainer("<html>");
 
//Give bounds to the container
c.SetBounds(ClientRectangle);
 
//Measure bounds of each box on the tree
c.MeasureBounds(graphics);

//Paint the HTML document
c.Paint(graphics);

renderer_002.jpg

First a label, then a panel and at last a ToolTip, all of which support HTML rendering.

You may never use it, since I provided controls and methods that create this object for you.

HtmlPanel

A panel that is ready to accept HTML code via its Text property. Its full name is System.Windows.Forms.HtmlPanel.

The only properties you need to know are:

  • AutoScroll. Activates/Deactivates the auto-scroll capabilities as you know. It is set to true by default.
  • Text. Gets/Sets the HTML source.

The panel will update the bounds of the elements as you scroll or resize the control.

HtmlLabel

A label that is ready to accept HTML code via its Text property. Its full name is System.Windows.Forms.HtmlLabel.

The only properties you need to know are:

  • AutoScroll. Activates/Deactivates the auto-scroll capabilities as you know. It is set to true by default.
  • AutoSize. Sets the size of the label automatically if activated.
  • Text. Gets/Sets the HTML source.

Some interesting things:

  • The label will update the bounds of the elements as you scroll or resize the control.
  • The label can be transparent.
  • The panel has better performance than the label.

HtmlToolTip

Works exactly like the ToolTip you already know, with the little difference that this tooltip will render HTML on it. It's full name is System.Windows.Forms.HtmlToolTip.

There are no properties here to learn. Use it just the way you use the ToolTip that comes with the framework. Internally, it just handles the OwnerDraw event.

Some Features of my Own

I took the liberty of adding a couple of features:

  • Background gradients
  • Rounded corners

These are achieved through the following CSS properties:

  • <code>background-gradient: (color)
  • background-gradient-angle: (number)
  • corner-ne-radius: (length)
  • corner-nw-radius: (length)
  • corner-se-radius: (length)
  • corner-se-radius: (length)
  • corner-radius: (length){1,4} (shorthand for all corners)

What's Currently Supported by the Renderer?

  • Most border, padding and margin and positioning CSSproperties (except for the height property)
  • Text alignment horizontally and vertically, text indents too
  • Lists, ordered and unordered. Advanced numbering is not yet supported
  • Tables, almost all of it. Cell combinations work quite well as far as I tested them
  • Fonts (partially) and Colors
  • Backgrounds (just color)

Points of Interest

What can I say, this is one of the most fun projects I've ever been involved with. And so far, it runs beautifully and checks its original design goals.

I am planning to give it full rendering support, to the day that you may visualize a web page just as a good web browser would; and why not, make a WYSIWYG HTML editor to give amazing HTML editing power to your applications.

I'm also planning to make sure it runs perfectly well on Mono and on Mobile platforms.

In the next few days, I'll publish a list of supported HTML tags and CSS properties.

History

  • Jan 08 2009: First release
  • Jan 29 2009: Minor bugs fixed 
    • Text Encoding of samples
    • Large paragraphs and fonts because of Culture  
    • License 

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
Product Manager
United States United States
Jose Menendez

- I've been programming Windows and Web apps since 1997.
- My greatest concern nowadays is product, user interface, and usability.
- TypeScript / React expert


Get me to help you debug your code
https://jose.page/fiverr

Comments and Discussions

 
QuestionHas this project been kept up-to-date by anyone? It fails when adding an ".html" document with images Pin
bobishkindaguy28-Nov-22 12:24
bobishkindaguy28-Nov-22 12:24 
QuestionHow i Can Print to direct printer Pin
a5sum21-Sep-18 21:43
a5sum21-Sep-18 21:43 
Generalthanks Pin
Hooman_Kh21-Sep-16 22:48
Hooman_Kh21-Sep-16 22:48 
QuestionUsage with Delphi Pin
Johann Winkler4-Sep-16 23:20
Johann Winkler4-Sep-16 23:20 
QuestionLandscape pdf generation posible ? Pin
Asutosha29-Jul-16 1:33
professionalAsutosha29-Jul-16 1:33 
QuestionExcellent post Pin
klinkenbecker2-Jun-16 8:40
klinkenbecker2-Jun-16 8:40 
AnswerRe: Excellent post Pin
klinkenbecker2-Jun-16 9:06
klinkenbecker2-Jun-16 9:06 
QuestionDoes it support javascript and css? Pin
Najeeb Shaikh12-May-16 8:45
Najeeb Shaikh12-May-16 8:45 
PraiseGreat Job! Pin
ilMo1-Feb-16 3:09
ilMo1-Feb-16 3:09 
QuestionUsing attribute dir='rtl', selection using mouse is not working. Pin
Ramveer Singh from Gurgaon, Haryana18-Oct-15 1:08
Ramveer Singh from Gurgaon, Haryana18-Oct-15 1:08 
Question<input checkbox Pin
junqitan23-Aug-15 21:03
junqitan23-Aug-15 21:03 
QuestionImage URI Exception Pin
ClaudioBalbin3-Jun-15 9:48
ClaudioBalbin3-Jun-15 9:48 
GeneralMy vote of 5 Pin
wmjordan11-Feb-15 15:49
professionalwmjordan11-Feb-15 15:49 
QuestionLife Saver Pin
Clutch23422-May-14 6:18
Clutch23422-May-14 6:18 
AnswerRe: Life Saver Pin
thekingarthur1-Nov-14 2:59
thekingarthur1-Nov-14 2:59 
QuestionThis control is great! But there's an issue on CJK layout Pin
wmjordan12-Jul-13 20:53
professionalwmjordan12-Jul-13 20:53 
AnswerRe: This control is great! But there's an issue on CJK layout Pin
thekingarthur11-Sep-13 21:15
thekingarthur11-Sep-13 21:15 
GeneralRe: This control is great! But there's an issue on CJK layout Pin
wmjordan12-Sep-13 18:09
professionalwmjordan12-Sep-13 18:09 
GeneralMy vote of 5 Pin
AlphaDeltaTheta10-Jul-13 20:31
AlphaDeltaTheta10-Jul-13 20:31 
GeneralRe: My vote of 5 Pin
thekingarthur1-Nov-14 2:59
thekingarthur1-Nov-14 2:59 
GeneralMy vote of 5 Pin
partha chakraborti1-Jul-13 4:48
partha chakraborti1-Jul-13 4:48 
QuestionJavascript Pin
filmee2424-Jun-13 20:27
filmee2424-Jun-13 20:27 
NewsThe project is actively developed on CodePlex! Pin
thekingarthur11-Mar-13 3:13
thekingarthur11-Mar-13 3:13 
GeneralRe: The project is actively developed on CodePlex! Pin
wmjordan19-Oct-13 3:44
professionalwmjordan19-Oct-13 3:44 
QuestionAdding CssBoxes Pin
solalem4-Mar-13 1:00
solalem4-Mar-13 1:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.