Hello Telerik Team,
I´m trying to add a RadLabel into a RadGroupBox programatically like this:
RadGroupBox time = new RadGroupBox();
time.Text = "Zeit Wahl";
time.Left = 20;
time.Top = 280;
RadLabel labelTime = new RadLabel();
labelTime.Text = "Zeitintervall von/bis wählen:";
labelTime.Left = 20;
labelTime.Top = 290;
time.Controls.Add(labelTime);
panelTypeCharts.Controls.Add(time);
But it doesnt work for me, I see the groupBox but the label is not there, any suggestions?
Thanks very much
Kind regards,
Alfonsina