如何在程序运行时将dayTimePicker设置为当前日期(c#)?

发布于 2024-11-01 15:34:42 字数 46 浏览 5 评论 0原文

如何将 dayTimePicker 默认值设置为运行程序时的日期(当前日期)?

How do i set the dayTimePicker default value to the date when i run the program (present day)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

意中人 2024-11-08 15:34:42

对于当前时间和日期

dateTimePicker.Value = DateTime.Now;

对于当前日期

dateTimePicker.Value = DateTime.Today;

for current time and date

dateTimePicker.Value = DateTime.Now;

for current date

dateTimePicker.Value = DateTime.Today;
洋洋洒洒 2024-11-08 15:34:42

您可以显式设置属性设置为 DateTime.Today

myPicker.Value = DateTime.Today;

但是,这不是必需的 - 正如 MSDN 页面提到的:

如果 Value 属性未在代码中或由用户更改,则它将设置为当前日期和时间 (DateTime.Now)。

You can explicitly set the Value property of the control to DateTime.Today.

myPicker.Value = DateTime.Today;

However, this is not needed - as the MSDN page mentions:

If the Value property has not been changed in code or by the user, it is set to the current date and time (DateTime.Now).

你不是我要的菜∠ 2024-11-08 15:34:42
datetimepicker.value = DateTime.Now;
datetimepicker.value = DateTime.Now;
七月上 2024-11-08 15:34:42

你应该这样做:

yourDateTimePicker.Value = DateTime.Today;

You should do this:

yourDateTimePicker.Value = DateTime.Today;
踏月而来 2024-11-08 15:34:42

该控件的默认值是 Today

From MSDN< /a>:

如果 Value 属性未在代码中或由用户更改,则它将设置为当前日期和时间 (DateTime.Now)。

The default value of the control is Today

From MSDN:

If the Value property has not been changed in code or by the user, it is set to the current date and time (DateTime.Now).

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