Mega Code Archive

 
Categories / C# / 2D Graphics
 

Color Chocolate

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);      } }