Im using GroupBox Control on my Form Page(WinForms).
The GroupBox contain five controls(RadioButtons).
Any idea if group box control contains property that inidactes if any of the button inside the control were checked?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No since GroupBoxes are not meant for just RadioButtons. Its a general container control. To check if anything is checked, you could do in one line with
Linq.Or you could create your own extension method with it and call it easily if its often re-used.