DateTimePicker 和秒
我已经搜索过,但无法得到答案。我在 WinForms 对话框上使用 DateTimePicker 并指定自定义格式:dd.MM.yyyy HH:mm:ss
。但 DateTimePicker 不显示秒,它总是显示 00
。即使我输入“15”秒,该值是正确的,但显示是错误的。
我做错了什么?
I've searched SO, but could't get the answer. I use a DateTimePicker on a WinForms dialog and specify a custom format: dd.MM.yyyy HH:mm:ss
. But DateTimePicker doesn't show the seconds, it always shows 00
for them. Even if I type e.g. "15" seconds, the value is correct but it's shown wrong.
What did I do wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我自己已经找到了答案。如果我将数据源绑定到 DateTimePicker 的 Text 属性,则不会显示秒。我必须改为绑定到 Value 属性。
I've found out the answer by myself. If I bind the data source to the Text property of DateTimePicker, the seconds will not be shown. I have to bind to the Value property instead.
您是否在指定自定义格式之前设置了 Format 属性?
从 MSDN 页面获取的 DateTimePicker.CustomFormat 属性示例
Did you set the Format property before specifying your custom format?
Example cadged from the MSDN page for DateTimePicker.CustomFormat Property