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:
If Statement
CheckBox
IsChecked property of CheckBox is Nullable boolean.
IsChecked
public bool? IsChecked { get; set; }
Create a Nullable boolean and equate it will work for you.
bool? NullableBool = chkRevLoop.IsChecked; if(NullableBool == true) { }