定义委托:
delegate void ShowDelegate(string strshow);
方法:
public void TextBoxAppendStr(string strshow) { if (textBox.InvokeRequired) { textBox.Invoke(new ShowDelegate(TextBoxAppendStr), strshow); } else { textBox.Text += strshow; } }
调用:
TextBoxAppendStr("已经停止虹膜特征提取\r\n");