How can I set "isfocusable" property to false for UIElements ( buttons) in WPF?
I'm trying to set开发者_开发百科 the property of UIElement
to not focusable, but there does not seem to be a isfocusable property for buttons. Does anyone have any suggestions? Thanks :)
I believe you are looking for the Focusable property.
What about <Button Focusable="False" />
精彩评论