C# CheckBox to Button -


i making program, has 2 checkboxes in windows form. first checkbox clearing file, other printing out. final selection, starting of method button. wanna make if-statement "if checkbox1 clicked , this". should fired button.

you can in button's event:

if (checkbox1.checked) {     //do } 

Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

How can I fetch data from a web server in an android application? -

jquery - How can I dynamically add a browser tab? -