HtmlDemo.002.zip
Html Demo.exe
System.Drawing.Html.dll
HtmlDemo.zip
Html Demo.exe
System.Drawing.Html.dll
System.Drawing.Html.002.zip
System.Drawing.Html
Html Demo
bin
Debug
Html Demo.exe
Html Demo.vshost.exe
HtmlDemo.zip
System.Drawing.Html.dll
Html Demo.csproj.user
Properties
Settings.settings
Resources
comment16.gif
delete16.gif
delete32.gif
exclamation32.png
favorites32.png
font32.png
formula32.png
image32.png
method16.gif
paly32.png
property16.gif
property32.png
refreshdocument32.png
web_pallete.gif
Window.gif
Samples
System.Drawing.Html.suo
System.Drawing.Html
bin
Debug
System.Drawing.Html.dll
System.Drawing.Html.vshost.exe
Properties
Settings.settings
System.Drawing.Html.zip
Html Demo.exe
Html Demo.vshost.exe
System.Drawing.Html.dll
Html Demo.csproj.user
Settings.settings
comment16.gif
delete16.gif
delete32.gif
exclamation32.png
favorites32.png
font32.png
formula32.png
image32.png
method16.gif
paly32.png
property16.gif
property32.png
refreshdocument32.png
web_pallete.gif
Window.gif
System.Drawing.Html.suo
System.Drawing.Html.dll
System.Drawing.Html.vshost.exe
Settings.settings
|
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 use 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.
Jose Manuel Menéndez Poó
- I've been programming Windows and Web apps since 1997.
- My greatest concern nowadays is user interface usability.
Questions and stuff by twitter: @menendezpoo
Jose Runs Goplek in Mexico
www.goplek.com
Blog
menendezpoo.com