progressBar如何不阻塞ui线程

                       MethodInvoker mi = new MethodInvoker(() =>
                        {
                            progressBar1.Value += progressBar1.Step;
                            this.lblprass.Text = this.progressBar1.Value.ToString() + "/" + this.progressBar1.Maximum.ToString();
                        });
                        this.BeginInvoke(mi);
                        System.Threading.Thread.Sleep(1000);//暂停1秒
原文地址:https://www.cnblogs.com/daimaxuejia/p/12972263.html