C#用timer控件做循环周期的问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#用timer控件做循环周期的问题相关的知识,希望对你有一定的参考价值。

time1_tick里已经有写好的程序了,
已经用来做每隔5s循环(循环4次,然后停止,这算一个周期)的程序了

我现在想用textbox1,textbox2
1控制输入的循环周期次数looptime
2控制每次一个周期结束后的延时时间delaytime
(相当于执行完一个周期后延时一会再做一个周期)

当然用thread.sleep做延时最简单,但是不知到会不会和我的另一个线程冲突
就是这样,然后textbox输入部分已经搞定了,

现在可以用looptime=5 delaytime=1000来进行测试

现在就是这个问题了~

现在我写好的程序是这样的:
private void button4_Click(object sender, EventArgs e)

if (timer1.Enabled==false)

timer1.Interval = 5000;
timer1.Start();
timer1_Tick(null, null);


//////////////////下面有我的程序代码,已经设置每隔interval=5s,然后循环四次
public PictureBox CurrentPic get; set;
private void timer1_Tick(object sender, EventArgs e)


if (CurrentPic == null)

CurrentPic = pictureBox3 ;

CurrentPic.Image = bm;
if (CurrentPic == pictureBox3)

pictureBox3.Image.Save(path1 + "\\" + timepath + "\\1.bmp");
CurrentPic = pictureBox4;

。。。。。
else

pictureBox6.Image.Save(path1 + "\\" + timepath + "\\4.bmp");
timer2.Stop();
CurrentPic = null;


参考技术A 你可以用数字来处理,如果不想用线程,可以用两个timer控件,或者一个timer控件,但是timer控件只用来计时, begin在按钮中运行 work在timer1_Tick中执行

比如这样
int looptime ;

int delaytime ;

int i_loop;
int i_delay;

bool waiting;

PictureBox[] CurrentPic;
private void begin()

looptime =5;
delaytime =1000/5;//因为时间控件的周期是每五秒工作一次
i_loop=0;

i_delay=0;
waiting=false;
CurrentPic =new PictureBox[]pictureBox3,pictureBox4,pictureBox5,pictureBox6;
timer1.Interval = looptime*1000;
timer1.Start();


public void work()

if(waiting)

i_delay++;
if(i_delay> delaytime )

i_delay=0;
waiting=false;

else
savePic(i_loop);
i_loop++;
if(i_loop>CurrentPic.Count-1)

i_loop=0;
waiting=true;



public void savePic(int i)

CurrentPic[i].Image.Save(path1 + "\\" + timepath + "\\"+i.toString()+".bmp");

本回答被提问者和网友采纳

C#定时器怎么写?

关于C#中timer类 在C#里关于定时器类就有3个
1.定义在System.Windows.Forms里
2.定义在System.Threading.Timer类里
3.定义在System.Timers.Timer类里

System.Windows.Forms.Timer是应用于WinForm中的,他是通过Windows消息机制实现的,类似于VB或Delphi中的Timer控件,内部使用API SetTimer实现的。他的主要缺点是计时不精确,而且必须有消息循环,Console Application(控制台应用程式)无法使用。

System.Timers.Timer和System.Threading.Timer很类似,他们是通过.NET Thread Pool实现的,轻量,计时精确,对应用程式、消息没有特别的需要。System.Timers.Timer还能够应用于WinForm,完全取代上面的Timer控件。他们的缺点是不支持直接的拖放,需要手工编码。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Timers;
using System.Collections;

namespace WindowsApplication1

public partial class Form1 : Form

public Form1()

InitializeComponent();


private void Form1_Load(object sender, EventArgs e)


System.Timers.Timer aTimer = new System.Timers.Timer();
aTimer.Elapsed += new ElapsedEventHandler(theout); //到达时间的时候执行事件;
// 设置引发时间的时间间隔 此处设置为1秒(1000毫秒)
aTimer.Interval = 100000;
aTimer.AutoReset = true;//设置是执行一次(false)还是一直执行(true);
aTimer.Enabled = true; //是否执行System.Timers.Timer.Elapsed事件;


public void theout(object source, System.Timers.ElapsedEventArgs e)

ArrayList AutoTask = new ArrayList();
AutoTask.Add("8:30:00");
AutoTask.Add("9:30:00");
AutoTask.Add("10:30:00");
AutoTask.Add("11:34:15");

for (int n = 0; n < 4; n++)

if (DateTime.Now.ToLongTimeString().Equals(AutoTask[n]))

MessageBox.Show("现在时间是" + AutoTask[n]);





2.

C#.net 定时器

最近需要用到一个定时器,设定当 程序 到某时刻 执行某段代码。

using System;

using System.Timers;

namespace 定时器ConsoleApplication1



class Class1



[STAThread]

static void Main(string[] args)



System.Timers.Timer aTimer = new System.Timers.Timer();

aTimer.Elapsed += new ElapsedEventHandler(TimeEvent);

// 设置引发时间的时间间隔 此处设置为1秒(1000毫秒)

aTimer.Interval = 1000;

aTimer.Enabled = true;

Console.WriteLine("按回车键结束程序";

Console.WriteLine(" 等待程序的执行......";

Console.ReadLine();



// 当时间发生的时候需要进行的逻辑处理等

// 在这里仅仅是一种方式,可以实现这样的方式很多.

private static void TimeEvent(object source, ElapsedEventArgs e)



// 得到 hour minute second 如果等于某个值就开始执行某个程序。

int intHour = DateTime.Now..Hour;

int intMinute = DateTime.Now.Minute;

int intSecond = DateTime.Now.Second;

// 定制时间; 比如 在10:30 :00 的时候执行某个函数

int iHour = 10;

int iMinute = 30;

int iSecond = 00;

// 设置 每秒钟的开始执行一次

if( intSecond == iSecond )



Console.WriteLine("每秒钟的开始执行一次!";



// 设置 每个小时的30分钟开始执行

if( intMinute == iMinute && intSecond == iSecond )



Console.WriteLine("每个小时的30分钟开始执行一次!";



// 设置 每天的10:30:00开始执行程序

if( intHour == iHour && intMinute == iMinute && intSecond == iSecond )



Console.WriteLine("在每天10点30分开始执行!";










参考技术A 1楼的回答的非常详细了,
1.定义在System.Windows.Forms里
2.定义在System.Threading.Timer类里
3.定义在System.Timers.Timer类里
平时多查查MSDN,上面有帮助说明和示例。
参考技术B setTimeout(SetInitialize, 1000);
SetInitialize是方法名
java脚本的

以上是关于C#用timer控件做循环周期的问题的主要内容,如果未能解决你的问题,请参考以下文章

C# winform中timer函数如何停止,点运行后可再次启动周期事件

c#如何在课堂上制作周期性事件?

自己定义定时器(Timer)

C# winform中timer函数如何停止,点运行后可再次启动周期事件

c# 怎么设置 System.Timers.Timer执行次数 t5.AutoReset = false;

C#的Timer的详细用法?