0

我知道如何通过脚本添加文本框或按钮,但我不知道如何在创建后更改新(例如)按钮的大小和位置。这是我按下按钮时用来创建文本框的代码:

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);
    }
4

1 回答 1

0

您需要设置SizeandLocation属性,或者单独的Top, Left, Width, orHeight属性。

于 2013-09-24T14:38:18.443 回答