中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中怎么利用異步實現一個進度條效果

發布時間:2021-07-20 10:56:44 來源:億速云 閱讀:229 作者:Leah 欄目:編程語言

本篇文章給大家分享的是有關C#中怎么利用異步實現一個進度條效果,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

C#進度條實現之異步實例進度條頁面:

//====================================  // Microsoft patterns & practices  // CompositeUI Application Block  //====================================  // Copyright ?Microsoft Corporation.    //All rights reserved.  // THIS CODE AND INFORMATION IS   //PROVIDED "AS IS" WITHOUT WARRANTY  // OF ANY KIND, EITHER EXPRESSED OR   //IMPLIED, INCLUDING BUT NOT  // LIMITED TO THE IMPLIED WARRANTIES  // OF MERCHANTABILITY AND  // FITNESS FOR A PARTICULAR PURPOSE.  //=====================================   using System;  using System.Collections.Generic;  using System.ComponentModel;  using System.Data;  using System.Drawing;  using System.Text;  using System.Windows.Forms;    namespace BackgroudWokerUI  {  public partial class ProgressForm : Form  {  public ProgressForm()  {  InitializeComponent();  }   //工作完成后執行的事件  public void OnProcessCompleted(object sender, EventArgs e)  {  this.Close();  }   //工作中執行進度更新  ,C#進度條實現之異步實例public void OnProgressChanged(object sender, ProgressChangedEventArgs e)  {  progressWork.Value = e.ProgressPercentage;  }   private void btnClose_Click(object sender, EventArgs e)  {  Close();  }  }  }

C#進度條實現之異步實例主頁面:

using System;  using System.Collections.Generic;  using System.ComponentModel;  using System.Data;  using System.Drawing;  using System.Text;  using System.Windows.Forms;  using System.Threading;   //Note You must be careful not to manipulate any user-interface objects   //in your System.ComponentModel.BackgroundWorker.DoWork event handler.   //Instead, communicate to the user interface through the   //System.ComponentModel.BackgroundWorker.ProgressChanged and   //System.ComponentModel.BackgroundWorker.RunWorkerCompleted events.   namespace BackgroudWokerUI  {  public partial class MainForm : Form  {  //BindingList is useful list for UI   private IList<string> leftList = new BindingList<string>();  private IList<string> rightList = new BindingList<string>();   private BackgroundWorker worker = null;   public MainForm()  {  InitializeComponent();  //Databinding here  listBox1.DataSource = leftList;  listBox2.DataSource = rightList;  }   private void addButton_Click(object sender, EventArgs e)  {  if (textBox.Text.Length != 0)  {  leftList.Add(textBox.Text);  textBox.Text = "";  textBox.Focus();  }  }   private void moveButton_Click(object sender, EventArgs e)  {  //顯示進度條  ,C#進度條實現之異步實例ProgressForm progressForm = new ProgressForm();  progressForm.Show();   // Prepare the background worker   //for asynchronous prime number calculation  //準備進度條的記數  worker= new BackgroundWorker();  // Specify that the background   //worker provides progress notifications    //指定提供進度通知  worker.WorkerReportsProgress = true;  // Specify that the background worker supports cancellation  //提供中斷功能  worker.WorkerSupportsCancellation = true;  // The DoWork event handler is the main   //work function of the background thread  //線程的主要功能是處理事件  //開啟線程執行工作  ,C#進度條實現之異步實例worker.DoWork += new DoWorkEventHandler(worker_DoWork);  // Specify the function to use to handle progress  //指定使用的功能來處理進度  worker.ProgressChanged +=   new ProgressChangedEventHandler(worker_ProgressChanged);  worker.ProgressChanged +=   new ProgressChangedEventHandler(progressForm.OnProgressChanged);  // Specify the function to run when the   //background worker finishes  // There are three conditions possible   //that should be handled in this function:  // 1. The work completed successfully  // 2. The work aborted with errors  // 3. The user cancelled the process  //進度條結束完成工作  //1.工作完成  //2.工作錯誤異常  //3.取消工作  worker.RunWorkerCompleted +=   new RunWorkerCompletedEventHandler(  worker_RunWorkerCompleted);  worker.RunWorkerCompleted+=  new RunWorkerCompletedEventHandler(  progressForm.OnProcessCompleted);     //If your background operation requires a parameter,   //call System.ComponentModel.BackgroundWorker.RunWorkerAsync   //with your parameter. Inside   //the System.ComponentModel.BackgroundWorker.DoWork   //event handler, you can extract the parameter from the   //System.ComponentModel.DoWorkEventArgs.Argument property.  //如果進度條需要參數  //調用System.ComponentModel.BackgroundWorker.RunWorkerAsync  //傳入你的參數至System.ComponentModel.BackgroundWorker.DoWork   //提取參數  //System.ComponentModel.DoWorkEventArgs.Argument   worker.RunWorkerAsync(leftList);  }   //單線程執行工作  private void worker_DoWork(object sender, DoWorkEventArgs e)  {  MoveList((BackgroundWorker)sender,e);  }   //進行轉移工作  private void MoveList(BackgroundWorker worker,DoWorkEventArgs e)  {  IList<string> list = e.Argument as IList<string>;   for (int i = 0; i < list.Count; i++)  {  // Check for cancellation  //檢查取消  if (worker.CancellationPending)  {  e.Cancel = true;  break;  }  else {  // This will be handled in the correct thread thanks to the   // internals of BackgroundWroker and AsyncOperation  worker.ReportProgress((i + 1) * (100 / list.Count), list[i]);  // Simulate some time consuming proccess.  //線程休眠  Thread.Sleep(500);  }  }  }  //添加數據至右邊listBox  private void worker_ProgressChanged(  object sender, ProgressChangedEventArgs e)  {  //Add string to the right listBox  rightList.Add(e.UserState as string);  }   //C#進度條實現之異步實例//工作完成狀態  private void worker_RunWorkerCompleted(  object sender, RunWorkerCompletedEventArgs e)  {  if (e.Cancelled)  {  label.Text = "Cancelled!取消";  }  else if (e.Error != null)  {  label.Text = "Error!異常";  }  else {  label.Text = "Success!完成";  leftList.Clear();  }  }  //取消中  private void cancelButton_Click(  object sender, EventArgs e)  {  if (worker.IsBusy)  {  label.Text = "Cancelling...";  //掛起進程  worker.CancelAsync();  }  }  //返回操作  private void moveBackButton_Click(  object sender, EventArgs e)  {  foreach (string str in rightList)  {  leftList.Add(str);  }  rightList.Clear();  }  }  }

以上就是C#中怎么利用異步實現一個進度條效果,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

延长县| 富宁县| 新化县| 闵行区| 江源县| 宁安市| 阿勒泰市| 遂宁市| 虎林市| 静宁县| 汶上县| 江源县| 宜宾县| 布尔津县| 常宁市| 体育| 芜湖县| 江川县| 博客| 保靖县| 日照市| 荆门市| 鹤峰县| 自治县| 绥滨县| 松阳县| 临漳县| 房产| 福贡县| 高州市| 宁都县| 汉源县| 武冈市| 长沙市| 大连市| 铜梁县| 平度市| 香河县| 乐业县| 秦皇岛市| 金塔县|