DatePicker:文本框和按钮都获得键盘焦点?
有没有办法让 WPF DatePicker 中的两个控件获得焦点?对两者设置 Focusable 属性都不起作用。
我们希望用户能够通过 Tab 键切换到两个控件,而不是仅将焦点转到文本框。谢谢!
Is there a way to get focus on both controls in the WPF DatePicker? Setting the Focusable property on both makes neither work.
We would like users to be able to tab to both controls instead of focus only going to the textbox. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在这方面得到了一些帮助。我需要将 KeyboardNavigation.TabNavigation 属性设置为“继续”,然后它就起作用了。感谢 Sam 的修复。
I got some help on this. I needed to set the KeyboardNavigation.TabNavigation property to "Continue", then it worked. Thanks to Sam for the fix.