如果打印整个日期,为什么日历控件在任何日期总是将时间显示为 12:00:00 AM?

发布于 2024-10-15 09:53:22 字数 101 浏览 1 评论 0原文

当我在 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 技术交流群。

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

发布评论

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

评论(1

酒中人 2024-10-22 09:53:22

因为 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.

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