Form Paint event : Form Event « GUI Windows Form « C# / C Sharp






Form Paint event



using System;
using System.Drawing;
using System.Windows.Forms;
   
class PaintEvent
{
     public static void Main()
     {
          Form form   = new Form();
          form.Text   = "Paint Event";
          form.Paint += new PaintEventHandler(MyPaintHandler);
   
          Application.Run(form);
     }
     static void MyPaintHandler(object objSender, PaintEventArgs pea)
     {
          Graphics graphics = pea.Graphics;
   
          graphics.Clear(Color.Chocolate);
     }
}

           
       








Related examples in the same category

1.Form Window event: closing, closed, load, activated, deactivated
2.Scrolling (AutoScrollMinSize)
3.OnInputLanguageChangedOnInputLanguageChanged
4.Form Focus eventForm Focus event
5.On Mouse Wheel
6.OnMouseEnter, OnMouseHover, OnMouseLeave event
7.OnKeyDown event
8.OnClick event
9.Form OnResize
10.Form OnMove event
11.Cancel EventCancel Event
12.Uncloseable eventUncloseable event
13.Bind key action to a form windowBind key action to a form window
14.Form window closing eventForm window closing event
15.Form window load eventForm window load event
16.Form resize and redrawForm resize and redraw
17.Form Mouse down actionForm Mouse down action
18.Form Key Press actionForm Key Press action
19.Scroll Shapes