using System;
using System.Drawing;
using System.Windows.Forms;
class InheritTheForm: Form
{
publicstaticvoid Main()
{
InheritTheForm form = new InheritTheForm();
form.Text = "Inherit the Form";
form.BackColor = Color.White;
Application.Run(form);
}
}