ボタンを押すと、テキストボックスが所定の位置に表示されるコードスニペットを作成したいと考えています。これは、ボタンを何回押しても実行時に発生する必要があります。
質問する
334 次
1 に答える
2
You could do something like:
public void ButtonAddNewTextbox_Click(object sender, EventArgs e)
{
TextBox textbox = new TextBox();
textbox.Location = new Point(); // specify position inside the constructor
Controls.Add(textbox);
}
Note: I haven't specified the X
and Y
coordinates for the Point object. You can set these yourself by doing:
Point p = new Point();
p.X = 100;
p.Y = 100;
These values need to be different for each textbox so they are spaced out correctly.
于 2013-06-27T09:02:48.370 に答える