避免按压。 (句点)键移至日期时间选择器控件中的下一个字段
在日期时间选择器控件中,用户必须按 .(句点) 才能移动到不同的字段(如日、月、年)
我想通过允许用户输入日期而不输入 .(句点) 来覆盖此行为
是否有任何方法可以实现此目的在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
代码不是很漂亮,但您当然可以自动发送
.
。只需处理
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 codeSendKeys.Send(".");
.