如何在程序运行时将dayTimePicker设置为当前日期(c#)?
如何将 dayTimePicker 默认值设置为运行程序时的日期(当前日期)?
How do i set the dayTimePicker default value to the date when i run the program (present day)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
对于当前时间和日期
对于当前日期
for current time and date
for current date
您可以显式设置
值
属性设置为
DateTime.Today
。但是,这不是必需的 - 正如 MSDN 页面提到的:
You can explicitly set the
Value
property of the control toDateTime.Today
.However, this is not needed - as the MSDN page mentions:
你应该这样做:
You should do this:
该控件的默认值是 Today
From MSDN< /a>:
The default value of the control is Today
From MSDN: