delegate void SetTextCallback(string text);
private void showClientMsg(string text) { // InvokeRequired required compares the thread ID of the // calling thread to the thread ID of the creating thread. // If these threads are different, it returns true. if (this.rtbShowinfo.InvokeRequired) { SetTextCallback d = new SetTextCallback(showClientMsg); this.Invoke(d, new object[] { text }); } else { this.rtbShowinfo.AppendText(text + "\r\n"); } }
如果本文引用了你的文章而未注明,请及时联系我。
浙公网安备 33010602011771号