Hello,
I have a few checkboxes thatwhen you check them, they set a varible to bool.
For example, if someone selected that they want to see a square it would then change the bool "square = true" however, when someone unchecks the checkbox, I want the boolen to go back to false again, any ideas?
private void squareCheck_CheckedChanged(object sender, EventArgs e)
{
square = true;
}
Many thanks =)