系统线程:跨线程操作无效

时间:2012-04-13 12:17:03

标签: c# winforms multithreading

我从我的主题中得到的错误是:

跨线程操作无效。控制'richTextBox8'从其创建的线程以外的线程访问。

我将此代码用于导致错误的字符串列表。

string[] parts = richTextBox8.Text.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);

现在我正在使用System.Threading,它需要将上面的代码转换为类似此代码的格式,但是我无法做到或者还有其他方法吗?

richTextBox8.Invoke((Action)(() => richTextBox8.Text += "http://elibrary.judiciary.gov.ph/" + str + "\n"));

3 个答案:

答案 0 :(得分:2)

你的字符串数组(string [])看起来很好。如果inisde richTextBox8中有空格,则应该进行拆分。

关于您的线程,请尝试使用委托,例如:

    public delegate void MyDelegate(string message);

   //when you have to use Invoke method, call this one:
   private void UpdatingRTB(string str)
   {
       if(richTextBox8.InvokeRequired)
           richTextBox8.Invoke(new MyDelegate(UpdatingRTB), new object []{ msg });
       else
           richTextBox8.AppendText(msg);
   }

答案 1 :(得分:1)

string[] parts = null;
richTextBox8.Invoke((Action)(() => 
    {
        parts = richTextBox8.Text.Split(new string[] { " " },
        StringSplitOptions.RemoveEmptyEntries); //added semicolon
    }));

答案 2 :(得分:1)

您只需要在UI线程上完成文本提取。

使用variable capturing

string text = null;
richTextBox8.Invoke((Action)(() => text = richTextBox8.Text));
string[] parts = text.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);

没有变量捕获(效率稍高):

var ret = (string)richTextBox8.Invoke((Func<string>)(() => richTextBox8.Text));
parts = ret.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);