There is some checkboxes in my forms and some of them in panels in a specific form(two different matter).
I placed a button that when user click on that, the size of all checkboxes should change(in all panels and forms).
And another question is that,how can I found that what is the type of controls in my app Programmatically?
Thanks for your help.
I placed a button and added a event handler.
and for founding the the type of control,I used the name of control
Here is my try:
foreach (Control ctrl in this.Controls)
if (ctrl.Name.Contains("combo"))
checkbox1.SetSize = new Size(40,40);