您好,登錄后才能下訂單哦!
這篇文章給大家介紹 BackgroundWorker組件在c#中的作用是什么,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
當(dāng)構(gòu)建一個(gè)圖形化的Windows Form桌面應(yīng)用程序并且需要執(zhí)行在應(yīng)用程序主UI線程之外的線程中長(zhǎng)時(shí)間的任務(wù)時(shí),BackgroundWorker類就很有用了。
要使用BackgroundWorker,我們只需要告訴它希望在后臺(tái)執(zhí)行那個(gè)方法并且調(diào)用RunWorkerAsync()即可
public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { int a = int.Parse(textBox1.Text.Trim()); int b = int.Parse(textBox2.Text.Trim()); Add ad = new Add(a,b); backgroundWorker1.RunWorkerAsync(ad); } private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e) { Add args=(Add)e.Argument; for (int i = 0; i < 11; i++) { Thread.Sleep(200); backgroundWorker1.ReportProgress(i*10); } e.Result = args.a + args.b; } private void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e) { label1.Text = e.Result.ToString(); } private void backgroundWorker1_ProgressChanged(object sender, ProgressChangedEventArgs e) { progressBar1.Value = e.ProgressPercentage; } } public class Add { public int a; public int b; public Add(int a, int b) { this.a = a; this.b = b; } }
關(guān)于 BackgroundWorker組件在c#中的作用是什么就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。