将 lambda 表达式发布到 currentWindowsFormsSynchronizationContext
时,我发现 lambda 代码在后台线程上执行:
// running on main thread here
myLabel = new Label();
this.Controls.Add(myLabel);
WindowsFormsSynchronizationContext.Current.Post( ignore => {
// returns true !
bool invokeRequired = myLabel.InvokeRequired;
// returns a background thread, not the UI thread
int threadId = System.Threading.Thread.CurrentThread.ManagedThreadId;
// throws, because we are (unexpectedly) on a background, different thread
myLabel.Text = "whatever";
},null);
此外,WindowsFormsSynchronizationContext.Current
似乎返回的不是一个WindowsFormsSynchronizationContext
,而是一个普通的System.Threading.SynchronizationContext
。
这突然发生在一个过去没有线程问题并且最近没有修改过的表单上(解决方案的其他部分是)。我尝试寻找明显的错误(例如,在后台线程上实例化表单本身的代码,或在后台线程上创建的控件),但我无法找到明显的违规行为。
也许我看错了方向?