How can I get a value returned from the checkbox_CheckChanged event please? Its a winforms app, and both the form and the checkbox are created programmatically. Thanks for all and any help.
How can I get a value returned from the checkbox_CheckChanged event please? Its a
Share
The Controls event handlers are always “void” and you cant change the return type. Instead you can take an external variable and you change that value only in when the CheckedChanged Event occurs.