I have some radiobuttons in an app that works with touch. Because the end-user can have thick fingers, I want to make the circle and text int he radiobutton bigger.
Problem is, I can only make the text bigger, not the circle in the radiobutton.
<RadioButton VerticalAlignment="Center" x:Name="rbtnContainers" Click="SetContainers" FontSize="18">Containers</RadioButton>
Using height doesn't work either. It makes the radiobutton bigger, but the circle remains the same.
Any hint or answer is appreciated.
This should work for you.
another alternative is to write your own ControlTemplate for the RadioButton and change its appearance as you want.
A more of a hack would be to try to simply transform the object with something like...
Just remember that
ScaleX
andScaleY
needs to be equal, otherwise the object will look stretched awkwardlyAccording to my own experimenting, the rendering of this is not at all messed up (e.g. no alignment issues, etc.)
To resize only the circle, one can use
RadioButton
template and changeWidth
andHeight
ofBulletChrome
.