解决了
似乎奥利弗是对的.经过几次尝试,我得到了异常,在调试模式我得到它肯定.所以这一切都要关于时间安排.你也应该检查Matthew wattsons的答案;)
例
首先要说明一点我的困惑.
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Threading; namespace testCrossThreading { public partial class Form1 : Form { public Form1() { InitializeComponent(); new Thread(ThreadJob).Start(); } void ThreadJob() { //label1.Text = "1"; changeText(label1,"1"); } void changeText(Label L,String message) { L.Text = message; } } }
题
所以现在我的问题:如果我取消注释label1.Text =“1”;在函数“ThreadJob”中,我按预期得到一个十字线程异常.
但是如果我把它留下来,就像这个例子表明它是有效的.但为什么?
该函数由子线程调用,我不调用任何东西.所以它仍然是子线程,而不是改变标签imo的文本的GUI线程.还是我错过了什么?
我会这样写
void ThreadJob() { Action a = () => label1.Text = "1"; this.Invoke(a); }