Form from1 = new Form();TextBox txt = new TextBox();txt.Width = 200;txt.Position = new Point(100, 100);from1.AddControl(txt);from1.Show();