Keyboard.FocusedElement为空,可能的原因是什么?
当键盘在 WPF 应用程序中导航时,在一个控件和另一个控件之间的一个步骤中,Keyboard.FocusedElement
为 null。如果代码中没有引用此属性,哪些方法会导致这种情况?任何控件都有 Unfocus
方法吗?
While keyboard navigating a WPF app, in one step, between one control and another, the Keyboard.FocusedElement
is null. If there is no reference to this property in the code, which methods can cause this? Is there an Unfocus
method for any control?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发生这种情况的一种方式是,如果焦点位于某个控件上,然后将该控件的
Focusable
属性设置为 false。Keyboard.FocusedElement
将为 null。One way this could happen is if focus is on a control and then the
Focusable
property of that control is set to false.Keyboard.FocusedElement
would then be null.