私は7人のユーザーからなるフォームをお互いに持っています。しかし、私はループの中でそれの隣に7ボタンを設定したい。今、私はこれを持っています。ループ内のユーザーの隣にあるボタン
int x = 12;
int y = 30;
foreach (details dets1 in detailsList)
{
var label = new Label();
label.AutoSize = true;
label.Location = new Point(x, y);
label.Name = dets1.fname;
label.Text = dets1.fname;
this.Controls.Add(label);
y += label.Height + 5;
}
for (int i = 0; i < 7 ; i++)
{
Button button = new Button();
button.Location = new Point(200, 30);
button.Text = "Off";
button.Tag = i;
button.BackColor = Color.Red;
this.Controls.Add(button);
button.Click += button_Click;
}
'button.Location =新しいポイント(200、30 + iは高さ*);'ここで 'height'は、ユーザに関連付けられた各制御の高さである –
依然として一つのボタン – discable10