GUI Windows Forms C# Tutorial

using System; 
using System.Windows.Forms; 
using System.Drawing; 
 
class ButtonEventForm : Form { 
  Button MyButton = new Button(); 
 
  public ButtonEventForm() { 
    Text = "Respond to a Button"; 
 
    MyButton = new Button(); 
    MyButton.Text = "Press Here"; 
    MyButton.Location = new Point(100, 200); 
 
    // Add button event handler to list. 
    MyButton.Click += MyButtonClick; 
 
    Controls.Add(MyButton); 
  }   
 
  [STAThread] 
  public static void Main() { 
    ButtonEventForm skel = new ButtonEventForm(); 
 
    Application.Run(skel); 
  } 
 
  // Handler for MyButton. 
  protected void MyButtonClick(object who, EventArgs e) { 
    Console.WriteLine("action.");
 
  } 
}