Click here to Skip to main content
15,891,473 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 753.9K   23.4K   531  
100% managed code that draws HTML on any device
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Html_Demo
{
    public partial class SampleForm : Form
    {
        public SampleForm()
        {
            InitializeComponent();
        }

        private void htmlLabel1_Click(object sender, EventArgs e)
        {
            pGrid.SelectedObject = htmlLabel1;
        }

        private void panel1_Paint(object sender, PaintEventArgs e)
        {
            Bitmap bmp = new Bitmap(10, 10);

            using (Graphics g = Graphics.FromImage(bmp))
            {
                g.Clear(Color.White);
                g.FillRectangle(SystemBrushes.Control, new Rectangle(0, 0, 5, 5));
                g.FillRectangle(SystemBrushes.Control, new Rectangle(5, 5, 5, 5));
            }

            e.Graphics.DrawImage(bmp, PointF.Empty);

            using (TextureBrush b = new TextureBrush(bmp,  System.Drawing.Drawing2D.WrapMode.Tile))
            {
                e.Graphics.FillRectangle(b, panel1.ClientRectangle);
            }

            bmp.Dispose();
        }

        private void htmlPanel1_Click(object sender, EventArgs e)
        {
            pGrid.SelectedObject = htmlPanel1;
        }

        private void button1_Click(object sender, EventArgs e)
        {
            pGrid.SelectedObject = button1;
            htmlToolTip1.SetToolTip(button1, htmlLabel1.Text);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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
- I've been programming Windows and Web apps since 1997.
- My greatest concern nowadays is product, user interface, and usability.
- TypeScript / React expert

@geeksplainer

Comments and Discussions