c#应用程序的进度条控件怎么使用啊?

c#应用程序的进度条控件怎么使用啊?
2024-11-25 18:51:14
推荐回答(3个)
回答1:

1.把进度条控件从工具箱中拖出
2.用线程启动查询方法
  如:
progressBar.Value = 0;
                progressBar.Visible = true;
                new System.Threading.Thread(delegate()
                {
                    while (progressBar.Value + 10 < progressBar.Maximum)
                    {
                        this.Invoke(func, progressBar.Value + 10);
                        System.Threading.Thread.Sleep(100);
                    }
                    //下载完结
                    {

                        this.Invoke(downloadOverFunc);
                    }

                }).Start();
3.在查询方法中添加进度条事件
4,当查询方法返回值时出发进度条事件

回答2:

要用定时器
给你发段代码吧!这个是做好的进度条!
有什么问题发信息!

int x=5;
private void timer1_Tick(object sender, System.EventArgs e)
{
if(this.progressBar1.Value<100)
{
this.progressBar1.Value+=20;
}
if(x==0)
{
this.Close();
}
this.label1.Text=x.ToString();
x--;

}

private void timer2_Tick(object sender, System.EventArgs e)
{
this.label3.Width++;
}

回答3:

progressbar.Value++