Empty Form : Introduction : GUI Windows Forms C# Examples


C# Examples » GUI Windows Forms » Introduction »

 

Empty Form








    
using  System;
using  System.Windows.Forms;

public  class  EmptyForm  :  System.Windows.Forms.Form
{
    public  EmptyForm()
    {
    }
    public  static  int  Main()
    {
        Application.Run(new  EmptyForm());
        return  0;
    }              
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo GUI Windows Forms
» Introduction