C# 执行不同时间的定时命令

发布于 2024-08-19 13:59:23 字数 363 浏览 4 评论 0原文

我有一个计时器控件和一个带有网格坐标列表的网格。我想知道如何使用计时器控件或任何其他控件来在间隔、坐标中执行代码。时间因每个坐标而异。另外, 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 技术交流群。

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

发布评论

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

评论(1

无所谓啦 2024-08-26 13:59:23

只需为每个坐标创建一个新线程,并将计时器设置为指定的时间间隔即可。

Just create a new Thread per each coordinate with a Timer set to the specified interval.

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