views:

142

answers:

1

Hi, I have two radio buttons next to each other, and even though each one has no Content/Text, there is this ugly little dotted-line box that shows up next to which ever one has the focus (I think it wrapping the place where text/label would normally be). Can I get rid of this?

+2  A: 

You should be able to remove this by simply setting the FocusVisualStyle property to null:

<RadioButton FocusVisualStyle="{x:Null}" />
Drew Marsh