Thursday, August 27, 2009

Windows Programming - change back color 1

using System;
using System.Windows.Forms;
using System.Drawing;
class myfrm : Form
{
}
class Program
{
static void Main(string[] args)
{
myfrm f = new myfrm();
f.BackColor = Color.Blue;
f.ShowDialog();
}
}

No comments:

Post a Comment