欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

paip.C#.NET多线程访问 toolStripStatusLabel

程序员文章站 2023-10-21 22:37:44
paip.c#.net多线程访问 toolstripstatuslabel   作者attilax ,  email:1466519819@qq.com toolstrips...

paip.c#.net多线程访问 toolstripstatuslabel

 


作者attilax ,  email:1466519819@qq.com


toolstripstatuslabel控件比较特殊,无法定义invoke来线程调用。。只好使用原生委托..代码稍微多一些..

 

 

 

 


    delegate void clsc417();


 xxx()
{


                //setstatubarcount  c4g


                clsc417 clsobj = new clsc417(
                 delegate
                 {
                     toolstripstatuslabel3.text = "/" + ct.loadrecnum;


                 });
                clsobj();
                //end c4g

 


}