I\'m not talking about an event handler for this, but rather a simple If Statement checking if the CheckBox has been checked. So far I have:
You have to do this conversion from bool? to bool, to make it work:
if((bool)(chkRevLoop.IsChecked)){}
Since it is already a bool condition you need not to put true false because if it is true then only it will come inside this if condition else not.
so, no need to even put chkRevLoop.IsChecked == true here, you are by default asking ==true by puttin IsChecked