运行环境为VS2015,
如果直接在多线程中操作GUI会报错,在.net中,可以通过Dispatcher.Invoke来委托进行操作
具体用法示例:
节选自该程序中接收下位机发送数据并显示的代码
1.先在其他
函数
中创建并启动线程
ThreadStart threadStart = newThreadStart(ReceiveData);//ThreadStart是一个委托,创建一个线程来在后台接收数据
Thread thread = new Thread(threadStart);
thread.Start();//启动后台数据接收线程函数ReceiveData
(这部分实际上因为Debug的原因和后面有重复,但确实是可以实际运行的)
2.设置接收串口数据触发事件,一旦串口缓冲池有数据就会触发该函数
private void ReceiveData()
{
Sp.DataReceived += new SerialDataReceivedEventHandler(serialPort_DataReceived);//触发事件,一旦有串口数据就激活函数
}
3.接收缓冲区数据,委托处理方式操作GUI显示数据
public void serialPort_DataReceived(object sender,SerialDataReceivedEventArgs e)
{
strings = "";
int count= Sp.BytesToRead;//缓冲数据区数据的字节数
byte[]data = new byte[count];//用于保存缓冲数据区的数据
Sp.Read(data, 0, count);
foreach(byte item in data)
{
s +=Convert.ToChar(item);
}
this.Dispatcher.Invoke(new Action(()=> {//委托操作GUI控件的部分
tbReceiveData.Text += s; //textbox文字加上字符串s
}));
}
4.有需要还可以加入TEXTBOX自动滚动到最后一行
txtReceived.ScrollToEnd();
转载请注明原文地址: https://ju.6miu.com/read-297.html