码迷,mamicode.com
首页 > Windows程序 > 详细

C# 程序运行进度显示Lable

时间:2017-11-30 12:12:13      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:str   c#   tostring   进度   pre   ext   i++   color   0.00   

 

 

 

       public void test()
        {
            Thread.Sleep(1000);
            string vvv = "";
            for (int i = 0; i < 100000;i++ )
            {
                vvv = vvv  +i.ToString() + "\r\n";
                lblTip.Text = "已完成:[" + ((float)i*100 / (float)100000).ToString("0.00") + "%]...的数据";
                Application.DoEvents();
            }
            this.textBox1.Text = vvv;
        }

 

C# 程序运行进度显示Lable

标签:str   c#   tostring   进度   pre   ext   i++   color   0.00   

原文地址:http://www.cnblogs.com/lanyubaicl/p/7927656.html

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