TextBox txt = new TextBox(); //文本框控件
//如果想在移动控件位置 point(x,y)
txt.Location = new Point(50,50);
this.Controls.Add(txt); //this代表当前空间的所有集合
不过手动添加控件是要在Load方法中