文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C#多线程使用进度条

C#多线程使用进度条

时间:2011-04-24  来源:seoxs

//声明一个委托
        public delegate void UpdateBar(int iBar);
        //委托使用进度条
        void UpdateMyBar(int iMyBar)
        {//www.elivn.com
            if (this.progressBar1.Value != this.progressBar1.Maximum)
            {
                if (this.progressBar1.InvokeRequired)
                {
                    UpdateBar pb = new UpdateBar(UpdateMyBar);
                    IAsyncResult pbaResult = this.progressBar1.BeginInvoke(pb, new object[] { iMyBar});
                    try { pb.EndInvoke(pbaResult); }
                    catch { }
                }
                else { this.progressBar1.Value++; }
            }
        }

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载