【发布时间】:2017-11-30 16:42:00
【问题描述】:
for (int i = 0; i <= r.Count; i++)
{
RadioButton rdo = new RadioButton();
rdo.Name = "id";
rdo.Text = "Name";
rdo.ForeColor = Color.Red;
rdo.Location = new Point(5, 30 );
this.Controls.Add(rdo);
}
【问题讨论】:
-
太棒了/你试过什么
-
this 之类的东西能回答你的问题吗?
-
@MarkC。我使用了相同的链接,但它垂直显示单选按钮
标签: c# winforms radio-button