使用 dateTimePIcker 设置计时器间隔
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用这个:
Use this:
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