4
我嘗試添加複選框爲循環,當我輸入3例如在文本框中,然後單擊按鈕它自動添加3複選框的形式 我試過這個代碼,但只添加一個複選框如何添加循環控制
private void button1_Click(object sender, EventArgs e)
{
int x = Convert.ToInt32(textBox1.Text);
int m = 1;
for (int i = 0; i < x; i++)
{
CheckBox button2 = new System.Windows.Forms.CheckBox();
button2.Location = new System.Drawing.Point(5, m);
button2.Name = "button2 "+ m.ToString();
button2.Size = new System.Drawing.Size(51, 23);
button2.TabIndex = m;
//button2.UseVisualStyleBackColor = true;
this.Controls.Add(button2);
m++;
}
}
然後不要使用'm'作爲'TabIndex'。 +1 –
感謝所有我真的把它們分開了,現在它工作 –