I have...

Code:
using System;
using System.Windows.Forms;
class MainForm : Form
{
	public MainForm()
	{
		Text = "First WinApp";
	}
	
	public static void Main(string[] args)
	{
		Form form1 = new MainForm();
		TextBox text = new TextBox();
		Application.Run(form1);
	}
}
but from there, how do I had a TextBox to form1?

thanks,
Ken