DateTimePicker 和秒

发布于 2024-12-19 00:59:36 字数 185 浏览 0 评论 0原文

我已经搜索过,但无法得到答案。我在 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 技术交流群。

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

发布评论

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

评论(2

娇俏 2024-12-26 00:59:36

我自己已经找到了答案。如果我将数据源绑定到 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.

天冷不及心凉 2024-12-26 00:59:36

您是否在指定自定义格式之前设置了 Format 属性?

public void SetMyCustomFormat()
{
   // Set the Format type and the CustomFormat string.
   dateTimePicker1.Format = DateTimePickerFormat.Custom;
   dateTimePicker1.CustomFormat = "MMMM dd, yyyy - dddd";
}

从 MSDN 页面获取的 DateTimePicker.CustomFormat 属性示例

Did you set the Format property before specifying your custom format?

public void SetMyCustomFormat()
{
   // Set the Format type and the CustomFormat string.
   dateTimePicker1.Format = DateTimePickerFormat.Custom;
   dateTimePicker1.CustomFormat = "MMMM dd, yyyy - dddd";
}

Example cadged from the MSDN page for DateTimePicker.CustomFormat Property

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