Removing the focus frame box from controls
I have a WPF application with various controls in it. When I move between controls using TAB, I can see the focus frame box:
Is there any way to hide this frame, so it won't be seen? A WPF solution is prefer开发者_JAVA百科able but a WIN32 method would be acceptable as well.
Try this
FocusVisualStyle="{x:Null}"
CheckBox example
<CheckBox FocusVisualStyle="{x:Null}"/>
精彩评论