C# WinForms DateTimePicker 组件

发布于 2024-10-16 13:07:43 字数 98 浏览 5 评论 0原文

我正在使用 DateTimePicker 组件。是否可以更改格式?我想要 YYYY-MM-DD。该组件默认格式为 MM/DD/YYYY

谢谢。 我爱你们,伙计们:D

I m using DateTimePicker component. Does is possible tu change format ? I Want to be YYYY-MM-DD. This componenet default format is MM/DD/YYYY

Thanks .
I love you Guys :D

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

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

发布评论

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

评论(3

雪花飘飘的天空 2024-10-23 13:07:43

您需要设置 CustomFormat 属性yyyy-MM-dd
您还需要设置 格式自定义

You need to set the CustomFormat property to yyyy-MM-dd.
You'll also need to set Format to Custom.

哥,最终变帅啦 2024-10-23 13:07:43

是的,使用 CustomFormat 指定你想要的格式。请注意,选择器默认使用用户的区域设置作为格式,因此您可能不想自己设置它(如果您关心国际化)。

Yes, use CustomFormat to specify the format you want. Do be aware that the picker uses the user's regional settings by default for the format, so you might not want to set it yourself (if you care about internationalization).

回忆凄美了谁 2024-10-23 13:07:43

MSDN 参考

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

MSDN reference

  public void SetMyCustomFormat()
    {
       // Set the Format type and the CustomFormat string.
       dateTimePicker1.Format = DateTimePickerFormat.Custom;
       dateTimePicker1.CustomFormat = "MMMM dd, yyyy - dddd";
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文