首页 > Windows开发 > 详细

C# 窗口无假死,进度条

时间:2016-11-16 19:10:59      阅读:658      评论:0      收藏:0      [点我收藏+]

技术分享

 

 

        DataTable table;
        int currentIndex = 0;
        int max = 10000;


        private void button1_Click(object sender, EventArgs e)
        {
            buttonOK.Enabled = false;
            Thread thread = new Thread(new ThreadStart(LoadData));
            thread.IsBackground = true;
            thread.Start();

            progressBar1.Minimum = 0;
            progressBar1.Maximum = max;
        }
        private void LoadData()
        {
            SetLabelText("数据加载中...");
            currentIndex = 0;
            table = new DataTable();
            table.Columns.Add("id");
            table.Columns.Add("name");
            table.Columns.Add("age");
            while (currentIndex < max)
            {
                SetLabelText(string.Format("当前行:{0},剩余量:{1},完成比例:{2}%",
                    currentIndex, max - currentIndex, (Convert.ToDecimal(currentIndex) / Convert.ToDecimal(max) * 100).ToString()));
                SetPbValue(currentIndex);
                DataRow dr = table.NewRow();
                dr["id"] = currentIndex;
                dr["name"] = "张三";
                dr["age"] = currentIndex + 5;
                table.Rows.Add(dr);
                currentIndex++;
            }

            SetDgvDataSource(table);
            SetLabelText("数据加载完成");

            this.BeginInvoke(new MethodInvoker(delegate()
            {
                buttonOK.Enabled = true;
            }));
        }

        delegate void labDelegate(string str);
        private void SetLabelText(string str)
        {
            if (label1.InvokeRequired)
            {
                Invoke(new labDelegate(SetLabelText), new string[] { str });
            }
            else
            {
                label1.Text = str;
            }
        }

        delegate void dgvDelegate(DataTable table);
        private void SetDgvDataSource(DataTable table)
        {
            if (dataGridView1.InvokeRequired)
            {
                Invoke(new dgvDelegate(SetDgvDataSource), new object[] { table });
            }
            else
            {
                dataGridView1.DataSource = table;
            }
        }

        private delegate void pbDelegate(int value);
        private void SetPbValue(int value)
        {
            if (progressBar1.InvokeRequired)
            {
                Invoke(new pbDelegate(SetPbValue), new object[] { value });

            }
            else
            {
                progressBar1.Value = value;
            }
        }

 

C# 窗口无假死,进度条

原文:http://www.cnblogs.com/zishen/p/6070495.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!