我能夠創建按鈕。我將使用約65個按鈕,你如何使用按鈕上的其他條件?有人可以給我看一個例子嗎?先謝謝你。如果其他條件單選按鈕
private void createButtons()
{
flowLayoutPanel1.Controls.Clear();
for(int i = 0;i <10;i++)
{
RadioButton b = new RadioButton();
b.Name = i.ToString();
b.Text = "radiobutton" + i.ToString();
b.AutoSize = true;
flowLayoutPanel1.Controls.Add(b);
}
}
「你如何使用按鈕上的其他條件」,你將不得不詳細說明。 –
我是初學者。當我在表單上拖放一個按鈕時,每個按鈕都有自己的名字,例如radionbutton1 radiobutton2等等。當你動態地創建按鈕時,我不知道哪個按鈕是button1或button2。用上面的例子我可以說「如果radiobutton1.checked做到這一點」? etc. – Dominique1256
如何將RadioButtons放在列表或數組中?所以你可以使用'if(allRadioButtons [1] .checked)做這個' –