I'd like to know how to clear the selection from a radio group in my windows 8 app.. I was thinking like this:
RadioButton.SelectedIndex = -1;
Does anyone know how to do this? thanks.
|
You cant clear a selection of a radio button. If you need the ability to clear the selection consider another control like CheckBox |
|||||
|
|
Try tracking the specific instance of |
|||
|
|
IsCheckedto false it's not really correct use of radio buttons to have all options deselected. You should really be looking at some other UI elements. – ChrisF♦ Feb 11 at 13:13