c# 定时器调用控件的事件处理事情出现卡死主界面如何解决 20
小弟我做一个读取串口的程序,使用了serialPort1_DataReceived接收并处理数据,把数据放入一个数组中,然后使用定时器监视其中某一些数据,然后根据监视的数...
小弟我做一个读取串口的程序,使用了serialPort1_DataReceived接收并处理数据,把数据放入一个数组中,然后使用定时器监视其中某一些数据,然后根据监视的数据写入textbox中,这个过程中出现了把主线程卡死的现象,求大神解决?
展开
2个回答
展开全部
用线程去做 线程方法里再做定时器事件
Thread thread = new Thread(addfyj);
thread.IsBackground = true;
thread.Start();
private void addfyj()
{
show("进入定时器....");
#region 定时器
System.Timers.Timer aTimer = new System.Timers.Timer();
aTimer.Elapsed += new ElapsedEventHandler(aTimer_Elapsed); //定时事件的方法
aTimer.Interval = 60 * 1000; //秒数
aTimer.Enabled = true;
#endregion
}
Thread thread = new Thread(addfyj);
thread.IsBackground = true;
thread.Start();
private void addfyj()
{
show("进入定时器....");
#region 定时器
System.Timers.Timer aTimer = new System.Timers.Timer();
aTimer.Elapsed += new ElapsedEventHandler(aTimer_Elapsed); //定时事件的方法
aTimer.Interval = 60 * 1000; //秒数
aTimer.Enabled = true;
#endregion
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用线程来做 不用定时器 用线程 里面使用while死循环处理 这样就可以解决了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询