C# 执行不同时间的定时命令
我有一个计时器控件和一个带有网格坐标列表的网格。我想知道如何使用计时器控件或任何其他控件来在间隔、坐标中执行代码。时间因每个坐标而异。另外, thread.sleep(time) 对我来说不是一个选择。
foreach (Coordinate coordinate in this.Macro)
{
coordinate.Time;
coordinate.Initial;
coordinate.Final;
... executecode @ coordinate.Time.
}
I have a timer control and a grid with a List of coordinates for the grid. I was wondering how I could use the timer control or any other control in order to execute code in the interval, coordinate.Time as it varies for each coordinate. Also, thread.sleep(time) is not an option for me.
foreach (Coordinate coordinate in this.Macro)
{
coordinate.Time;
coordinate.Initial;
coordinate.Final;
... executecode @ coordinate.Time.
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需为每个坐标创建一个新线程,并将计时器设置为指定的时间间隔即可。
Just create a new Thread per each coordinate with a Timer set to the specified interval.