A form-based Windows Skeleton : Introduction : GUI Windows Forms C# Examples


C# Examples » GUI Windows Forms » Introduction »

 

A form-based Windows Skeleton









    
using  System;  
using  System.Windows.Forms;  
  
class  WinSkel  :  Form  {  
  
    public  WinSkel()  {  
        Text  =  "A  Windows  Skeleton";  
    }      
  
    [STAThread]  
    public  static  void  Main()  {  
        WinSkel  skel  =  new  WinSkel();
        Application.Run(skel);  
    }  
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo GUI Windows Forms
» Introduction