如果打印整个日期,为什么日历控件在任何日期总是将时间显示为 12:00:00 AM?
当我在 Calendar1_SelectionChanged
事件上打印所选日期时,它会打印:1/29/2011 12:00:00 AM
When i print the selected date on Calendar1_SelectionChanged
event it prints: 1/29/2011 12:00:00 AM
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为 DateTime 总是带有日期和时间。日历控件仅生成日期,但由于您不能拥有没有时间部分的 DateTime,因此它仅将时间设置为 00:00:00。您可以忽略时间部分。
如果您想打印没有无意义时间部分的日期,请使用 ToShortDateString 方法或类似方法。
Because a DateTime always comes with a date and a time. A calendar control only produces a date, but since you can't have a DateTime without a time part, it just sets the time to 00:00:00. You can ignore the time part.
If you want to print the date without the meaningless time part, use the
ToShortDateString
method or something similar.