public class Form2 : System.Windows.Forms.Form
{
。TextBox textBox2= new TextBox() ;
textBox2.Name = "name";
textBox2.Text = "";
textBox2.Visible = true;
textBox2.Width = 100;
textBox2.Height = 200;
}
-----------
怎么样让textBox2显示在Form2窗口中???