我知道如何通过脚本添加文本框或按钮,但我不知道如何在创建后更改新(例如)按钮的大小和位置。这是我按下按钮时用来创建文本框的代码:
private void button1_Click(object sender, EventArgs e)
{
TextBox txt = new TextBox();
txt.Text = "helloo";
Controls.Add(txt);
Label lbl = new Label();
lbl.Text = "I am a label";
Controls.Add(lbl);
}