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
One line is enough to check if the radio button is checked or not:
string status = Convert.ToBoolean(RadioButton.IsChecked) ? "Checked" : "Not Checked";