6 c# sockets multithreading winforms
调试时我一直收到以下错误.
Cross-thread operation not valid: Control 'richTextBoxReceivedMsg' accessed from a thread other than the thread it was created on.
Run Code Online (Sandbox Code Playgroud)
这是它指向的代码:
public void OnDataReceived(IAsyncResult asyn)
{
try
{
SocketPacket socketData = (SocketPacket)asyn.AsyncState;
int iRx = 0;
// Complete the BeginReceive() asynchronous call by EndReceive() method
// which will return the number of characters written to the stream by the client
iRx = socketData.m_currentSocket.EndReceive (asyn);
char[] chars = new char[iRx + 1];
System.Text.Decoder d = System.Text.Encoding.UTF8.GetDecoder();
int charLen = d.GetChars(socketData.dataBuffer, 0, iRx, chars, 0);
System.String szData = new System.String(chars);
richTextBoxReceivedMsg.AppendText(szData);
// Continue the waiting for data on the Socket
WaitForData( socketData.m_currentSocket);
}
catch (ObjectDisposedException)
{
System.Diagnostics.Debugger.Log(0,"1","\nOnDataReceived: Socket has been closed\n");
}
catch (SocketException se)
{
MessageBox.Show(se.Message);
}
}
Run Code Online (Sandbox Code Playgroud)
有人可以帮我解决这个问题吗?
Meh*_*ari 22
你需要替换这个:
richTextBoxReceivedMsg.AppendText(szData);
Run Code Online (Sandbox Code Playgroud)
喜欢的东西
Invoke(new Action(() => richTextBoxReceivedMsg.AppendText(szData)));
Run Code Online (Sandbox Code Playgroud)
原因是Windows Forms并非真正设计为跨不同的线程工作.Invoke方法将运行您在UI线程中传递给它的委托.如果要通过其他线程操作UI元素,则必须在UI线程上运行实际操作.InvokeRequired属性会告诉您何时需要使用Invoke而不是直接调用该方法.
| 归档时间: |
|
| 查看次数: |
11130 次 |
| 最近记录: |