.Net Compact Framework 上的 DateTimePicker - 是否可以使用弹出键盘编辑年份?
我正在开发一个在 Visual Studio 中使用 c#/dotNet 构建的 Windows 移动应用程序。 有一个带有 DateTimePicker 控件的表单。 我可以使用弹出键盘来编辑日期和月份,但它不适用于年份。
有没有其他人有这个问题? 有办法解决吗?
I'm working on an windows mobile application built using c#/dotNet in visual studio. There is a form with a DateTimePicker control. I can use the popup keypad to edit the day and month but it doesn't work for the year.
Has anyone else had this problem? Any way to fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过制作新的干净的 Windows Mobile 应用程序? 我刚刚制作了一个测试应用程序并尝试了您的场景,它对我来说非常有效。 我能够编辑日期时间选择器的所有部分。
我使用输入面板的左、右、上、下字符以及数字键进行测试。 一切都为我检查过了。
一个新的应用程序应该为您提供一个很好的测试用例来检查。
Have you tried making a new clean Windows Mobile application? I just made a test app and tried your scenario and it worked for me perfectly. I was able to edit all parts of the datetimepicker.
I test using the left, right, up, down characters of the input panel, and the number keys as well. Everything checked out for me.
A new app should give you a good test case to check against.
在对干净的 Windows Mobile 项目进行一些测试后(感谢 CJCraft.com),我发现将日期格式更改为短而不是长会导致此问题。 自定义格式也存在类似问题,任何带有 yyyy 的内容都可以使用键盘进行编辑,但如果缩短为 yy,则它不再起作用。
After doing some testing on a clean windows mobile project (thanks CJCraft.com) I've found that changing the date format to short instead of long causes this problem. Similar problem with custom formats, anything with yyyy can be edited with the keypad but if shortened to yy it doesn't work anymore.