避免按压。 (句点)键移至日期时间选择器控件中的下一个字段

发布于 2024-09-09 02:26:41 字数 145 浏览 6 评论 0原文

在日期时间选择器控件中,用户必须按 .(句点) 才能移动到不同的字段(如日、月、年)

我想通过允许用户输入日期而不输入 .(句点) 来覆盖此行为

是否有任何方法可以实现此目的在 C# winforms 中以编程方式?

提前致谢。

In datetime picker control the user has to press .(period) to move to different fields (like day, month year)

I want to override this behaviour by allowing the user to enter date without entering .(period)

Is there any to achieve this programmatically in C# winforms?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瞎闹 2024-09-16 02:26:41

代码不是很漂亮,但您当然可以自动发送 .
只需处理 ValueChanged 事件(仅当用户为他当前编辑的日期部分输入“完整”值时才会调用该事件),并在事件处理程序中添加代码 SendKeys.Send (“。”);

Not very beautiful code but you could of course send the . automatically.
Just handle the ValueChanged event (which will only be called when the user has entered a "whole" value for date part he's currently editing) and in the event handler you add the code SendKeys.Send(".");.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文