用datareceived读取串口的一个问题
小弟初学c#,正在做一个串口通信的程序,下面是我的接收程序段:private void mycomm_DataReceived(object sender, SerialDataReceivedEventArgs e)
{
this.Invoke(new EventHandler(Revtext_Update));
}
private void Revtext_Update(object sender, EventArgs e)
{
string Rs = mycomm.ReadExisting();
rxd = rxd + Rs.Length;
rds.Text = rxd.ToString();
revtext.Text = revtext.Text + Rs;
revtext.SelectionStart = revtext.Text.Length;
revtext.ScrollToCaret();
}
}
程序能够接收串口数据,问题是在连续接收时程序的界面不能用鼠标移动,程序界面上的按钮都不能点击,除了数据一直在接收外,其它跟死了一样,程序接收结束后,界面就能移动了,请各位大虾帮小弟看看,谢谢