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
Post a Comment