C#中,關於 BackgroundWorker 類的使用。

来源:https://www.cnblogs.com/youngrose/archive/2018/03/19/8601741.html
-Advertisement-
Play Games

介紹 The BackgroundWorker class allows you to run an operation on a separate, dedicated thread. Time-consuming operations like downloads and database tr ...


介紹

The BackgroundWorker class allows you to run an operation on a separate, dedicated thread. Time-consuming operations like downloads and database transactions can cause your user interface (UI) to seem as though it has stopped responding while they are running. When you want a responsive UI and you are faced with long delays associated with such operations, the BackgroundWorker class provides a convenient solution.

To execute a time-consuming operation in the background, create a BackgroundWorker and listen for events that report the progress of your operation and signal when your operation is finished. You can create the BackgroundWorker programmatically or you can drag it onto your form from the Components tab of the Toolbox. If you create the BackgroundWorker in the Windows Forms Designer, it will appear in the Component Tray, and its properties will be displayed in the Properties window.

To set up for a background operation, add an event handler for the DoWork event. Call your time-consuming operation in this event handler. To start the operation, call RunWorkerAsync. To receive notifications of progress updates, handle the ProgressChanged event. To receive a notification when the operation is completed, handle the RunWorkerCompleted event.

 

註意:在後臺線程DoWork()中不要出現UI界面里的對象:

You must be careful not to manipulate any user-interface objects in your DoWork event handler. Instead, communicate to the user interface through the ProgressChanged and RunWorkerCompleted events.

BackgroundWorker events are not marshaled across AppDomain boundaries. Do not use a BackgroundWorker component to perform multithreaded operations in more than one AppDomain.

 

關於參數的傳遞

If your background operation requires a parameter, call RunWorkerAsync with your parameter. Inside the DoWork event handler, you can extract the parameter from the DoWorkEventArgs.Argument property.

For more information about BackgroundWorker, see How to: Run an Operation in the Background.

 

using System;
using System.ComponentModel;
using System.Windows.Forms;

namespace BackgroundWorkerSimple
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
backgroundWorker1.WorkerReportsProgress
= true; // 允許worker彙報狀態 backgroundWorker1.WorkerSupportsCancellation = true; // 允許worker進行取消操作 } private void startAsyncButton_Click(object sender, EventArgs e) { if (backgroundWorker1.IsBusy != true) { // Start the asynchronous operation. backgroundWorker1.RunWorkerAsync(); // 啟動worker,DoWork()內的代碼自動在後臺線程開始運行。 } } private void cancelAsyncButton_Click(object sender, EventArgs e) { if (backgroundWorker1.WorkerSupportsCancellation == true) { // Cancel the asynchronous operation. backgroundWorker1.CancelAsync(); // 執行這命令後,worker.CancellationPending被設置為True } } // This event handler is where the time-consuming work is done. private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e) { BackgroundWorker worker = sender as BackgroundWorker; for (int i = 1; i <= 10; i++) { if (worker.CancellationPending == true) { e.Cancel = true; // 接收到用戶取消線程操作的命令後,經判斷是否允許取消操作,再由e.Cancel傳出是否執行”取消“操作。 break; } else { // Perform a time consuming operation and report progress. System.Threading.Thread.Sleep(500); worker.ReportProgress(i * 10); // 後臺線程反饋信息給UI界麵線程,會去執行ProgressChanged()里的代碼。 } } } // This event handler updates the progress. private void backgroundWorker1_ProgressChanged(object sender, ProgressChangedEventArgs e) { resultLabel.Text = (e.ProgressPercentage.ToString() + "%"); // UI界麵線程的操作,顯示進度、日誌等。 } // This event handler deals with the results of the background operation. private void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e) { if (e.Cancelled == true) { resultLabel.Text = "Canceled!"; } else if (e.Error != null) { resultLabel.Text = "Error: " + e.Error.Message; } else { // 線程完成後,在這裡顯示。 resultLabel.Text = "Done!"; } } } }

 

在UI界麵線程運行的代碼:

backgroundWorker1.RunWorkerAsync();
backgroundWorker1.CancelAsync();
backgroundWorker1_ProgressChanged();
backgroundWorker1_RunWorkerCompleted();


在後臺線程運行的代碼:
backgroundWorker1_DoWork();
worker.ReportProgress();



幾個流程:
1 啟動線程
UI界麵線程中,用戶點擊backgroundWorker1.RunWorkerAsync();啟動線程,接著自動啟動後臺線程,執行backgroundWorker1_DoWork();中的代碼。
在後臺線程中執行worker.ReportProgress();則UI界麵線程中會執行backgroundWorker1_ProgressChanged();中的代碼;
後臺線程執行完畢後,UI界麵線程會執行backgroundWorker1_RunWorkerCompleted();

2 取消線程
UI界麵線程中,用戶點擊backgroundWorker1.CancelAsync();發出取消線程的指令;
在後臺線程中backgroundWorker1_DoWork()代碼中執行以下代碼予以響應:
                if (worker.CancellationPending == true)
                {
                    e.Cancel = true; // 接收到用戶取消線程操作的命令後,經判斷是否允許取消操作,再由e.Cancel傳出是否執行”取消“操作。
                    break;
                }

UI界麵線程的

backgroundWorker1_RunWorkerCompleted();將會通過參數e.Cancelled執行代碼:
            if (e.Cancelled == true)
            {
                resultLabel.Text = "Canceled!";
            }
傳輸參數,用結構體來傳輸:
backgroundWorker1.RunWorkerAsync(struct arg);
在backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)中,將從參數e中獲取傳入的參數
struct inArg = (struct)e.Argument


如下:

        private void startBtn_Click(object sender, EventArgs e)
        {
            this.backgroundWorker1.RunWorkerAsync(2000);
        }

把2000當作參數傳入,在DoWork中,用e.Argument獲取到這個參數。



        private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
        {
            // Do not access the form's BackgroundWorker reference directly.
            // Instead, use the reference provided by the sender parameter.
            BackgroundWorker bw = sender as BackgroundWorker;

            // Extract the argument.
            int arg = (int)e.Argument;

            // Start the time-consuming operation.
            e.Result = TimeConsumingOperation(bw, arg);

            // If the operation was canceled by the user, 
            // set the DoWorkEventArgs.Cancel property to true.
            if (bw.CancellationPending)
            {
                e.Cancel = true;
            }
        }

 

在後臺線程DoWork()中,給e.Result賦值,這個線程執行的結果會傳出到UI界麵線程:
backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)

中的e.Result。



 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 單例模式 單例模式(Singleton Pattern)是一種常用的軟體設計模式,該模式的主要目的是確保某一個類只有一個實例存在。當希望在整個系統中,某個類只能出現一個實例時,單例對象就能派上用場。 比如,某個伺服器程式的配置信息存放在一個文件中,客戶端通過一個 AppConfig 的類來讀取配置文 ...
  • 因Excel催化劑用了VSTO的開發技術,並且為了最好的用戶體驗,用了Clickonce的佈署方式(無需人工干預自動更新,讓用戶使用如瀏覽器訪問網站一般,永遠是最新的內容和功能)。對安裝過程有一定的難度要求。僅以此文簡單羅列一下,希望能夠給廣大用戶一些實質性的指引(安裝成功過Excel催化劑插件或安 ...
  • 在使用騰訊雲對象存儲之前,公司一直使用的是傳統的FTP的上傳模式,而隨著用戶量的不斷增加,FTP所暴露出來的問題也越來越多,1.傳輸效率低,上傳速度慢。2.時常有上傳其他文件來攻擊伺服器,安全上得不到保障。所以我們在經過慎重考慮覺得使用第三方的雲存儲服務。 在最開始的時候我們在騰訊雲與阿裡雲中選擇, ...
  • 去年12月份,隨著Visual Studio 2017 Update 15.5的發佈,Visual C#迎來了它的最新版本:7.2. 在這個版本中,有個讓人難以理解的新特性,就是private protected訪問修飾符(Access Modifier)。至此,C#語言的訪問修飾符有以下幾種: p ...
  • 本文來告訴大家在C#很少有人會發現的科技。即使是工作了好多年的老司機也不一定會知道,如果覺得我在騙你,那麼請看看下麵 ...
  • 提到 UWP 中創建動畫,第一個想到的大多都是 StoryBoard。因為 UWP 和 WPF 的界面都是基於 XAML 語言的,所以實現 StoryBoard 會非常方便。 來看一個簡單的 StoryBoard 例子: 這是一個很典型也很簡單的 StoryBoard 實現,相信做過 WPF 或 U ...
  • 工作之餘。技術?。記是不可能記住的。 只有寫點東西 才能維持得了生活這樣子的。好早就像寫一篇關於任務調度的文章。終究是太懶了 一、Quartz.NET介紹 Quartz.NET是一個強大、開源、輕量的作業調度框架,是 OpenSymphony 的 Quartz API 的.NET移植,用C#改寫,可 ...
  • 在實際項目中有可能先設計好了資料庫,想用EF的code fist,那麼可以在項目中添加ADO.NET實體模型的時候選擇來自資料庫的code first,這樣會自動根據資料庫的表創建好模型, 之後如果需要修改表結構,可在model中直接修改,修改後需要同步到資料庫,可按照如下步驟設置, 1、在VS程式 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...