循环判断
For Each c As Object In e.form.Controls("groupBox1").Children
If typeof c is Winform.RadioButton Then
msgbox(c.name & " " & c.checked)
End If
Next