我有个笨方法:
定义一个temp类
class temp
{
static public int n=0;//n就是Form1的那个数据
}
在Form2的定义中添加代码
RadioButton[] radiobuttons;
Page_Load事件处理程序Page_Load()添加下列代码:
Page_Load(object Sender EventArgs e)
{
radiobuttons=new RadioButton[temp.n];
for(int i=0;i<n;i++)
{
radiobuttons[i]=new RadioButton();
//之后是初始化每个raidobutton的代码,你自己添加吧
}
}
这样做肯定能实现你的要求,可能不是最好的方法,代码的语句也可能有错(不是从编译器中粘过来的),但大体的意思不会有错,你去实现看看。