如何在 vb.net 中更改 DateTimePicker 的日期格式
如何更改 vb.net 中 DateTimePicker 的日期格式,以便日期以 dd/mm/1990 格式显示,没有任何时间值?我尝试将格式更改为“短”,虽然这提供了我需要的日期格式,但它不会删除时间。
How can I change the date format of a DateTimePicker in vb.net so that the date is shown in the format dd/mm/1990, without any time value? I have tried changing the format to "short", and while this provides the date formatting I require it does not remove the time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要将 DateTimePicker 的 Format 设置为 Custom,然后分配 CustomFormat。
You need to set the Format of the DateTimePicker to Custom and then assign the CustomFormat.
使用:
参考以下链接:
http://www.vbdotnetforums.com /schedule-time/15001-datetimepicker-format.html
Use:
Refer to the following link:
http://www.vbdotnetforums.com/schedule-time/15001-datetimepicker-format.html
试试这个代码,它可以工作:
注意:如果你使用
dd
作为日期表示,它在选择1到9时不会返回任何内容,所以使用d
进行选择文档 包含日期格式的完整列表。
Try this code it works:
Note : if u use
dd
for date representation it will return nothing while selecting 1 to 9 so used
for selectionThe documentation contains a full list of the date formats.