Custom Painting
Custom painting and drawing in the browser.

this.button1.Paint += this.button1_Paint;
private void button1_Paint(object sender, PaintEventArgs e)
{
e.Graphics.FillPie(Brushes.Blue, new Rectangle(0, 0, 150, 150), 0, 360);
}
Canvas Drawing

Last updated
Was this helpful?

