C#BackgroundWorker和Invoke

时间:2015-02-17 08:27:30

标签: c# .net multithreading backgroundworker invoke

有人可以解释为什么从Thread.Sleep调用BackgroundWorker会阻止其执行。调用应该导致委托在UI线程上执行,后台线程应该继续执行。但这不会发生 - 为什么?

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
        BackgroundWorker bgrw = new BackgroundWorker();
        bgrw.DoWork += new DoWorkEventHandler(bgrw_DoWork);

        bgrw.RunWorkerAsync();
    }

    void bgrw_DoWork(object sender, DoWorkEventArgs e)
    {
        Console.WriteLine(DateTime.Now);
        this.Invoke(new Action(() => { Thread.Sleep(2000); })); //should be executed on the UI thread
        Console.WriteLine(DateTime.Now); // This line is executed after 2 seconds
    }       
}

1 个答案:

答案 0 :(得分:6)

这是一个相当简单的解释。 Invoke阻止通话。如果要异步排队UI消息循环,请改为使用BeginInvoke

  

在该线程上执行指定的委托异步   控件的底层句柄是在。上创建的。

void bgrw_DoWork(object sender, DoWorkEventArgs e)
{
    Console.WriteLine(DateTime.Now);
    this.BeginInvoke(new Action(() => { Thread.Sleep(2000); })); 
    Console.WriteLine(DateTime.Now);
}  

注意你的代码,因为目前构造没有任何意义。我假设您将其用于测试目的。