进度条

来源:互联网 发布:淘宝c店没有流量咋办 编辑:程序博客网 时间:2024/06/05 11:53

                    this.Invoke(
                   (MethodInvoker)delegate()
                   {
                       this.SearchProgressBar.Maximum = fileCount;
                   });

 

                    value++;
                    this.Invoke(
                    (MethodInvoker)delegate()
                    {
                        this.CommentLabel.Text = (value * 100 / this.SearchProgressBar.Maximum).ToString() + " %";
                        this.SearchProgressBar.Value = value;
                    });

原创粉丝点击