在我的应用程序中,我需要执行一系列初始化步骤,这些初始化过程需要7-8秒钟才能完成,在此期间我的UI变得无响应。要解决此问题,我在单独的线程中执行初始化:

public void Initialization()
{
    Thread initThread = new Thread(new ThreadStart(InitializationThread));
    initThread.Start();
}

public void InitializationThread()
{
    outputMessage("Initializing...");
    //DO INITIALIZATION
    outputMessage("Initialization Complete");
}


我读了几篇有关BackgroundWorker的文章,以及如何使我的应用程序保持响应状态而没有曾经不得不编写一个线程来执行冗长的任务,但是尝试实现它并没有获得成功,有人可以告诉我我将如何使用BackgroundWorker做到这一点吗?

评论

我发现本教程很有用,它包含几个简洁的示例:Elegantcode.com/2009/07/03/…

单击该链接时出现隐私错误。

#1 楼


使用添加

using System.ComponentModel;



声明后台工作者:

private readonly BackgroundWorker worker = new BackgroundWorker();



/>订阅事件:

worker.DoWork += worker_DoWork;
worker.RunWorkerCompleted += worker_RunWorkerCompleted;



实现两种方法:

private void worker_DoWork(object sender, DoWorkEventArgs e)
{
  // run all background tasks here
}

private void worker_RunWorkerCompleted(object sender, 
                                           RunWorkerCompletedEventArgs e)
{
  //update ui once worker complete his work
}



/>只要需要,就可以异步运行worker。

worker.RunWorkerAsync();




跟踪进度(可选,但通常很有用)

a)订阅ProgressChanged事件并在ReportProgress(Int32)中使用DoWork

b)设置worker.WorkerReportsProgress = true;(贷记为@zagy)



评论


在这些方法中是否可以访问DataContext?

–susieloo_
19年7月23日在23:35

#2 楼

您可能还想研究使用Task而不是后台工作人员。

最简单的方法是Task.Run(InitializationThread);

使用任务代替后台工作者有很多好处。例如,.net 4.5中新的异步/等待功能将Task用于线程。这是有关Task的一些文档
https://docs.microsoft.com/zh-cn/dotnet/api/system.threading.tasks.task

评论


很抱歉,发现此线程,但是.net 4.0和4.5添加了一些很酷的东西,这些东西比BackgroundWorker易于使用。希望引导人们去做。

–欧文·约翰逊(Owen Johnson)
2014年6月2日在18:08

现在,这个答案已经过时了,请异步检查并等待。这些是语言集成的方式,以一种更具可读性的方式使用任务。

–欧文·约翰逊(Owen Johnson)
18/12/11在18:14

#3 楼

using System;  
using System.ComponentModel;   
using System.Threading;    
namespace BackGroundWorkerExample  
{   
    class Program  
    {  
        private static BackgroundWorker backgroundWorker;  

        static void Main(string[] args)  
        {  
            backgroundWorker = new BackgroundWorker  
            {  
                WorkerReportsProgress = true,  
                WorkerSupportsCancellation = true  
            };  

            backgroundWorker.DoWork += backgroundWorker_DoWork;  
            //For the display of operation progress to UI.    
            backgroundWorker.ProgressChanged += backgroundWorker_ProgressChanged;  
            //After the completation of operation.    
            backgroundWorker.RunWorkerCompleted += backgroundWorker_RunWorkerCompleted;  
            backgroundWorker.RunWorkerAsync("Press Enter in the next 5 seconds to Cancel operation:");  

            Console.ReadLine();  

            if (backgroundWorker.IsBusy)  
            { 
                backgroundWorker.CancelAsync();  
                Console.ReadLine();  
            }  
        }  

        static void backgroundWorker_DoWork(object sender, DoWorkEventArgs e)  
        {  
            for (int i = 0; i < 200; i++)  
            {  
                if (backgroundWorker.CancellationPending)  
                {  
                    e.Cancel = true;  
                    return;  
                }  

                backgroundWorker.ReportProgress(i);  
                Thread.Sleep(1000);  
                e.Result = 1000;  
            }  
        }  

        static void backgroundWorker_ProgressChanged(object sender, ProgressChangedEventArgs e)  
        {  
            Console.WriteLine("Completed" + e.ProgressPercentage + "%");  
        }  

        static void backgroundWorker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)  
        {  

            if (e.Cancelled)  
            {  
                Console.WriteLine("Operation Cancelled");  
            }  
            else if (e.Error != null)  
            {  
                Console.WriteLine("Error in Process :" + e.Error);  
            }  
            else  
            {  
                Console.WriteLine("Operation Completed :" + e.Result);  
            }  
        }  
    }  
} 


此外,请参考下面的链接,您将了解Background的概念:

http://www.c-sharpcorner.com/UploadFile/1c8574/threads-in -wpf /

#4 楼

我发现了这一点(WPF多线程:使用BackgroundWorker并向UI报告进度链接)包含了@Andrew的答案中缺少的其余细节。

我发现这件事非常有用是工作线程无法访问MainWindow的控件(使用它自己的方法),但是在主Windows事件处理程序中使用委托时,这是可能的。

worker.RunWorkerCompleted += delegate(object s, RunWorkerCompletedEventArgs args)
{
    pd.Close();
    // Get a result from the asynchronous worker
    T t = (t)args.Result
    this.ExampleControl.Text = t.BlaBla;
};