I am developing a Ribbon for my WPF application and I need to add two RibbonRadioButton into a RibbonGroup. I already did this, and everything works perfectly:
<rb:RibbonGroup>
<rb:RibbonRadioButton Label="Option one" IsChecked="{Binding OptionOne}" />
<rb:RibbonRadioButton Label="Option two" IsChecked="{Binding OptionTwo}" />
</rb:RibbonGroup>
But the RibbonRadioButtons look like a “conventional buttons” and I need them to look like the classic pushable RadioButtons we all know which are made up of a little circle and a label.
So, Is there a way to change the look of the RibbonRadioButtons??
Thanks in advance
This worked for me: