码迷,mamicode.com
首页 > 编程语言 > 详细

C#多线程进度条

时间:2014-08-05 00:26:38      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   art   ar   cti   

 public class ZyjProgressBar : System.Windows.Forms.ProgressBar
    {
        //用于跨线程访问控件的委托
        private delegate void deleByControl(int v);

        //用于执行的任务
        public Action Task { get; set; }
        private Thread taskThread;
        private deleByControl setValueDele;


        public ZyjProgressBar()
        {
            //初始化线程
            this.taskThread = new Thread(StartTask);
            this.taskThread.IsBackground = true;
            //初始化委托
            this.setValueDele = new deleByControl(AddValue);

        }

        private void StartTask() {
            this.Task();
        }

        /// <summary>
        /// 增加进度条的进度
        /// </summary>
        public void AddValue(int value)
        {
            if (this.InvokeRequired)
            {
                this.Invoke(this.setValueDele, 3);
            }
            else
            {
                this.Value += value;
            }
        }
    }

 

C#多线程进度条,布布扣,bubuko.com

C#多线程进度条

标签:style   blog   color   io   for   art   ar   cti   

原文地址:http://www.cnblogs.com/yzeng/p/3891272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!