Windows Phone 7: How do I make a radiobutton look like a toggle button?
I am trying to get the selected radio button to look like a depressed button.
Basically I have a filter by ‘FName’, ‘LName’ radio button over my list of names. RadioButton takes up too much screen space. A depressed button will save the space used by the ‘O’
You can try changing your Xaml to specify a ToggleButton which is the base class for RadioButtons and CheckBox’s, but since it is a ToggleButton you will have to interlock them in the
CheckedandUnCheckedevents. See this article and this MSDN information. Your only other option would be to create a new Style for your RadioButtons.From:
To: