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

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

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -