C# 多线程更新进度条progressBar控件的代码一例

发布时间:2021-01-11编辑:脚本学堂
为大家介绍windows应用程序中使用多线程更新控件的方法。以常见的多线程更新进度条为示例。本方法也可解决:“线程间操作无效: 从不是创建控件的线程访问它”的异常。供大家学习参考。

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;
namespace temp
{
    delegate void SetValueCallback(int value);
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            Thread t = new Thread(new ThreadStart(Foo));
            t.Start();
        }
        private void Foo()
        {
            for (int i = 1; i <= 100; i++)
            {
                Thread.Sleep(100);
                SetProcessBarValue(i);
                SetLabelValue(i);
            }
        }
        private void SetLabelValue(int value)
        {
            // Invokerequired required compares the thread ID of the
            // calling thread to the thread ID of the creating thread.
            // If these threads are different, it returns true.
            if (this.label1.InvokeRequired)
            {
                SetValueCallback d = new SetValueCallback(SetLabelValue);
                this.Invoke(d, new object[] { value });
            }
            else
            {
                this.label1.Text = value.ToString() + '%';
            }
        }
        private void SetProcessBarValue(int value)
        {
            // InvokeRequired required compares the thread ID of the
            // calling thread to the thread ID of the creating thread.
            // If these threads are different, it returns true.
            if (this.progressBar1.InvokeRequired)
            {
                SetValueCallback d = new SetValueCallback(SetProcessBarValue);
                this.Invoke(d, new object[] { value });
            }
            else
     //http://www.jb200.com
            {
                this.progressBar1.Value = value;
            }
        }
    }
}