我正在使用vb.net,在我的程序中,当我运行我的后台工作程序时,我会得到这个’crossthread操作无效’的错误,这将使此文本框启用为真.我的主子将首先将启用为false,当后台工作程序运行时,它会将其重新设置为true,然后退出.为什么会给我一个错误? FYI:有更多的代码,但我不想让它更混乱…
这是堆栈跟踪:
at System.Windows.Forms.Control.get_Handle() at System.Windows.Forms.Control.OnEnabledChanged(EventArgs e) at System.Windows.Forms.Control.set_Enabled(Boolean value) at Helium.Form1.BackgroundWorker1_DoWork(Object sender,DoWorkEventArgs e) in C:\Users\Kevin\documents\visual studio 2010\Projects\Helium\Helium\Form1.vb:line 167 at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e) at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
这里是确切的错误信息:
{"Cross-thread operation not valid: Control 'mainText' accessed from a thread other than the thread it was created on."}
有人可以帮我出来!
谢谢,
凯文
BackgroundWorker类的目的是在GUI保持响应时对非GUI线程执行工作.除非您将Control.CheckForIllegalCrossThreadCalls设置为false(您不应该执行此操作),或者使用其他答案(我也不推荐)中的建议使用Invoke,那么您将获得非法的跨线程操作异常.
原文链接:https://www.f2er.com/vb/255155.html如果您希望在BackgroundWorker运行时发生GUI相关的“东西”,我通常建议使用BackgroundWorker.ReportProgress方法,并将适当的处理程序附加到BackgroundWorker.ProgressChanged事件.如果您希望在BackgroundWorker完成后发生一些事情,那么请简单地将您的处理程序附加到BackgroundWorker.RunWorkerCompleted事件中.