WPF 工具包日历需要单击两次才能获得焦点
我正在使用 WPF 日历,它是 WPF 工具包的一部分。
我的一个控件上有两个不同的日历。当我尝试从一个日历中选择日期,然后从第二个日历中选择日期时,我必须单击第二个日历两次才能使其选择日期。
还有其他人遇到过这个问题并知道解决方案吗?
I am using the WPF Calendar that is part of the WPF Toolkit.
I have two different calendars on a control. When I attempt to choose a date from one calendar and then from the second calendar, I have to click on the second calendar twice to get it to choose a date.
Has anyone else had this issue and know of a solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
日历可以捕获鼠标而无需更改日期(例如,在日历模式下钻取)。
更好的解决方案是这样的:
The calendar can capture the mouse without a date change (e.g. in CalendarMode drill down).
A better solution is this:
我在更改日历的 SelectedDates 时添加了此代码,它解决了问题。
I added this code when changing the SelectedDates of the Calendar and it fixed the issue.