Click here to Skip to main content
15,900,815 members

Comments by Member 12539429 (Top 2 by date)

Member 12539429 29-Dec-21 12:39pm View    
Deleted
A rotina em Visual Studio é assim:
foreach (Control ctrl in panel1.Controls)
{
if (ctrl is RadioButton)
{
RadioButton radioB = (RadioButton)ctrl;
if (radioB.Checked)
{
strCargos = radioB.Text;
}
}
}

No mono não tem Controls.
Eu pesquisei muito e ainda não tenho a solução. Se você tem a solução, pode me passar?
Obrigado.
Member 12539429 10-Jun-21 9:34am View    
Hi,

Perfect.
Thank you very much.

José Carlos