使用 dateTimePIcker 设置计时器间隔

发布于 2024-10-27 12:25:03 字数 127 浏览 7 评论 0原文

我想使用 dateTimerPicker 时间格式 {mm:ss} 并在timer.interval中使用它。

意味着将 dateTimePicker 值转换为 double 并再次转换回来。

有什么想法吗?

I want to use dateTimerPicker Time format {mm:ss} and use it in timer.interval.

meaning converting the dateTimePicker value to double and back again.

any thoughts ?

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

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

发布评论

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

评论(2

素手挽清风 2024-11-03 12:25:03

使用这个:

timer.Interval = dateTimePicker.Value.TimeOfDay.TotalMilliseconds

Use this:

timer.Interval = dateTimePicker.Value.TimeOfDay.TotalMilliseconds
找回味觉 2024-11-03 12:25:03

timer.interval 以毫秒为单位。 (mm * 60 + ss) * 1000 = 时间(以毫秒为单位)。
或者更简单的是DateTime.TimeOfDay.TotalMilliseconds

也许使用 TimeSpan 对象而不是 DateTime 也更好。因为您没有使用它的日期部分。 (也许出于我不知道的其他原因)

然后您可以使用 TimeSpan.TotalMilliseconds 属性。

MSDN 上的 TimeSpan

timer.interval is in milliseconds. (mm * 60 + ss) * 1000 = time in milliseconds.
Or easier is DateTime.TimeOfDay.TotalMilliseconds.

Perhaps it is also beter to use the TimeSpan object instead of the DateTime. Because you are not using the Date part of it. (Maybe for other reasons which I don't know)

You then can use the TimeSpan.TotalMilliseconds property.

TimeSpan on MSDN

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