home *** CD-ROM | disk | FTP | other *** search
/ Programming in Microsoft Windows with C# / Programacion en Microsoft Windows con C#.iso / Original Code / Hello Windows Forms / InheritTheForm / InheritTheForm.cs next >
Encoding:
Text File  |  2001-01-15  |  470 b   |  18 lines

  1. //---------------------------------------------
  2. // InheritTheForm.cs ⌐ 2001 by Charles Petzold
  3. //---------------------------------------------
  4. using System;
  5. using System.Drawing;
  6. using System.Windows.Forms;
  7.  
  8. class InheritTheForm: Form
  9. {
  10.      public static void Main()
  11.      {
  12.           InheritTheForm form = new InheritTheForm();
  13.           form.Text = "Inherit the Form";
  14.           form.BackColor = Color.White;
  15.  
  16.           Application.Run(form);
  17.      }
  18. }