c#循环创建radiobutton
时间: 2023-07-27 08:11:09 浏览: 188
你可以通过循环来创建多个RadioButton控件,以下是使用C#代码创建RadioButton的示例:
```csharp
// 创建一个RadioButton数组
RadioButton[] radioButtons = new RadioButton[10];
// 循环创建RadioButton控件
for (int i = 0; i < radioButtons.Length; i++)
{
radioButtons[i] = new RadioButton();
radioButtons[i].Text = "RadioButton " + i;
radioButtons[i].Location = new Point(10, 10 + i * 20);
// 将RadioButton添加到窗体中
this.Controls.Add(radioButtons[i]);
}
```
以上代码会创建10个RadioButton控件,并将它们添加到窗体中。你可以根据自己的实际需求修改代码中的控件属性和循环次数。
阅读全文