To create a form you can either use the IDE or just do this...
Code:
using System;
using System.Windows.Forms;
public class TestForm : Form {
public static void Main(string[] args){
Application.Run(new TestForm());
}
}
And of course adding controls is longer, but that's a basic form.