I'm trying to customize the RadioButton button, but nothing changes in it. Why? And how to customize RadioButton to make it look like this: this is how it should look like
Also, can you tell me how to make the size of a round button 24x24? And how to implement its on/off?
That's how I tried to do it:
<RadioButton x:Name="CS" Width="24" Height="24"
Background="#9183E5" BorderBrush="#333335" BorderThickness="2"
Checked="CS_Checked" Unchecked="CS_Unchecked"
HorizontalAlignment="Center" VerticalAlignment="Center"/>
