There are different ways, but a simple way would be to loop through the control collection of the parent container that holds these checkboxes and uncheck each one.
C#:
foreach(Control c in container.Controls)
{
if(c is CheckBox)
((Checkbox)c).Checked = false;
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.