如何设置“isfocusable” WPF 中 UIElements(按钮)的属性为 false?
我试图将 UIElement
的属性设置为不可聚焦,但按钮似乎没有 isfocusable 属性。有人有什么建议吗?谢谢 :)
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 :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您正在寻找 Focusable 属性。
I believe you are looking for the Focusable property.
What about
<Button Focusable="False" />