First, references will be added to the CLR assemblies that will be used.
import clr
clr.AddReference('System.Windows.Forms')
Next the names we will use are imported.
from System.Windows.Forms import Application, Form
A class will be created for the Hello World form using Form as its subclas...