C#Winform如何使用Timer控件定时去调用方法
我做了个读卡程序,要求每隔30秒执行一次读卡方法,当读不到卡的时候停止执行,怎么做?在线等...我需要的是循环读取,不知道长度,而且刚开始不自动启动...
我做了个读卡程序,要求每隔30秒执行一次读卡方法,当读不到卡的时候停止执行,怎么做? 在线等...
我需要的是循环读取, 不知道长度,而且刚开始不自动启动 展开
我需要的是循环读取, 不知道长度,而且刚开始不自动启动 展开
5个回答
展开全部
using System.Threading; //引用线程命名空间
namespace WindowsApplication7
{
public partial class Form1 : Form
{
public Form1()
{
Form.CheckForIllegalCrossThreadCalls = false; //这句话不能丢
InitializeComponent();
}
Thread t; //定义一个线程
private void Form1_Load(object sender, EventArgs e)
{
t = new Thread(new ThreadStart(RunImage));
t.Start(); //启动线程
}
public void RunImage() //换图片的方法 这个方法是交给线程T去运行的
{
while (true) //循环````
{
for (int i = 0; i < imageList1.Images.Count; i++)
{
pictureBox1.Image = imageList1.Images[i];
Thread.Sleep(100); //换一次图片让线程休息多少时间具体修改里面的参数例如一秒换一次填1000
}
}
}
}
}
程序结束的时候记得关闭线程 调用t.Abort(); 不然线程还是运行的!
namespace WindowsApplication7
{
public partial class Form1 : Form
{
public Form1()
{
Form.CheckForIllegalCrossThreadCalls = false; //这句话不能丢
InitializeComponent();
}
Thread t; //定义一个线程
private void Form1_Load(object sender, EventArgs e)
{
t = new Thread(new ThreadStart(RunImage));
t.Start(); //启动线程
}
public void RunImage() //换图片的方法 这个方法是交给线程T去运行的
{
while (true) //循环````
{
for (int i = 0; i < imageList1.Images.Count; i++)
{
pictureBox1.Image = imageList1.Images[i];
Thread.Sleep(100); //换一次图片让线程休息多少时间具体修改里面的参数例如一秒换一次填1000
}
}
}
}
}
程序结束的时候记得关闭线程 调用t.Abort(); 不然线程还是运行的!
推荐于2016-08-13
展开全部
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控件。
它们的缺点是不支持直接的拖放,需要手工编码。
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控件。
它们的缺点是不支持直接的拖放,需要手工编码。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
怎么读卡 这个方法我没用过 不过Timer定时 就很简单了 自己任意写一个方法就行了 方法嘛就得自己想 要不然得不到锻炼的 不过我可以提示你一下 比如时刻获取当前时间 然后截取时间的字符串 判断 所截取的字符串某一位(如果你要定两个小时)那就判断小时那一位 加二 就执行呗
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
System.Timers.Timer timer = new System.Timers.Timer(30000);
public 构造函数()
{
timer.AutoReset = true;
timer.Enabled = true;
timer.Elapsed += new System.Timers.ElapsedEventHandler(timer_Elapsed);
}
void timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
readcard();
}
private void readcard()
{
if (读取成功)
{
timer.Enabled = true;
}
else
{
timer.Enabled = false;
}
}
public 构造函数()
{
timer.AutoReset = true;
timer.Enabled = true;
timer.Elapsed += new System.Timers.ElapsedEventHandler(timer_Elapsed);
}
void timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
readcard();
}
private void readcard()
{
if (读取成功)
{
timer.Enabled = true;
}
else
{
timer.Enabled = false;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Timer控件 enable,30000
if(读不到卡)
return;
else
执行
if(读不到卡)
return;
else
执行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询