C# 设置timer控件执行次数 50
窗体中添加了timer控件,在程序中添加如下代码:System.Timers.TimeraTimer=newSystem.Timers.Timer();aTimer.In...
窗体中添加了timer控件,在程序中添加如下代码:
System.Timers.Timer aTimer = new System.Timers.Timer();
aTimer.Interval = 1000;
aTimer.Enabled = true;
aTimer.Elapsed += new ElapsedEventHandler(timer1_Tick);
使得每间隔1秒中执行一次time1_Tick中自定义的命令。
请问应该怎么设置timer控件的执行次数。即假设有3组数据,每组数据需要程序执行60秒,每秒取一次值。请问有什么方法可以实现这个功能? 展开
System.Timers.Timer aTimer = new System.Timers.Timer();
aTimer.Interval = 1000;
aTimer.Enabled = true;
aTimer.Elapsed += new ElapsedEventHandler(timer1_Tick);
使得每间隔1秒中执行一次time1_Tick中自定义的命令。
请问应该怎么设置timer控件的执行次数。即假设有3组数据,每组数据需要程序执行60秒,每秒取一次值。请问有什么方法可以实现这个功能? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询