访问后台工作线程中的主线程控件

本文关键字:线程 控件 工作 访问 后台 | 更新日期: 2023-09-27 18:33:37

我有一个函数ShowPanel(Control ctrl)需要将Control作为参数传递。我需要在后台工作线程中调用此函数。我使用以下代码

void bw_DoWork(object sender,DoWorkEventArgs e)
{                      
    ShowPanel(listBox1);           
}

但执行失败

跨线程操作无效:从 创建它的线程以外的线程

如何在后台线程中传递listBox1

访问后台工作线程中的主线程控件

serilize 调用,因为您无法访问在不同线程上创建的控件,您需要使用以下方式对调用进行seriliaze

 void bw_DoWork(object sender,DoWorkEventArgs e)
 {                      
   this.Invoke(new MethodInvoker(delegate {
              ShowPanel(listBox1);           
    })); 
 }

我想应该有BeginInvoke而不是Invoke。

否则,这里是更通用的解决方案。

您需要添加对 WindowsBase.dll 的引用。

在主线程上获取线程的调度程序:

public class SomeClass
{
    System.Windows.Threading.Dispatcher mainThreadDispatcher;       
    // assuming class is instantiated in a main thread, otherwise get a dispatcher to the
    // main thread
    public SomeClass()
    {
        Dispatcher mainThreadDispatcher = Dispatcher.CurrentDispatcher;
    }
    public void MethodCalledFromBackgroundThread()
    {
        mainThreadDispatcher.BeginInvoke((Action)({() => ShowPanel(listBox1);}));
    }
}