J
juli
Hello,
I have a group box and I want to present there radio buttons.
The source for the text of the radio buttons is from a collection.
That's the code:
foreach (Performance p in re.PL)
{
RadioButton radio=new RadioButton();
radio.Text=p.Class_Name;
this.groupBox1.Controls.Add(radio);
}
The problem is that I get only one radio button presented in a group
box although supposed to be much more.Do you know why?
I have a group box and I want to present there radio buttons.
The source for the text of the radio buttons is from a collection.
That's the code:
foreach (Performance p in re.PL)
{
RadioButton radio=new RadioButton();
radio.Text=p.Class_Name;
this.groupBox1.Controls.Add(radio);
}
The problem is that I get only one radio button presented in a group
box although supposed to be much more.Do you know why?
