C# WinForms DateTimePicker 组件
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要设置
CustomFormat 属性
到
yyyy-MM-dd
。您还需要设置
格式
到自定义
。You need to set the
CustomFormat
property toyyyy-MM-dd
.You'll also need to set
Format
toCustom
.是的,使用 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).
MSDN 参考
MSDN reference