求解惑呀!关于单击按钮生成新的按钮,怎么实现
在Form1中建立一个按钮,和一个textbox。当单击按钮时在下方出现一个按钮,并且在textbox中输出该生成的按钮的test。
int i = 0; private void button1_Click(object sender, EventArgs e) { Button b = new Button(); i++; b.Location = new Point(button1.Location.X, button1.Location.Y + i * button1.Height); b.Text = "button" + i; textBox1.Text = b.Text; this.Controls.Add(b); }