码迷,mamicode.com
首页 > 编程语言 > 详细

线程控件异步赋值

时间:2021-06-28 19:57:18      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pre   delegate   invoke   nbsp   finish   ast   exp   col   名称   

//gcInterface为控件名称
if (gcInterface.InvokeRequired)
                    {
                        gcInterface.BeginInvoke((MethodInvoker)delegate
                        {
                            dtConfig.Rows[index]["count"] = count;
                            dtConfig.Rows[index]["time"] = costTime;
                            dtConfig.Rows[index]["flag"] = flag;
                            dtConfig.Rows[index]["last_finish_time"] = finishTime;
                            dtConfig.Rows[index]["exp_msg"] = expMsg;
                        });
                    }
                    else
                    {
                        dtConfig.Rows[index]["count"] = count;
                        dtConfig.Rows[index]["time"] = costTime;
                        dtConfig.Rows[index]["flag"] = flag;
                        dtConfig.Rows[index]["last_finish_time"] = finishTime;
                        dtConfig.Rows[index]["exp_msg"] = expMsg;
                    }

 

线程控件异步赋值

标签:pre   delegate   invoke   nbsp   finish   ast   exp   col   名称   

原文地址:https://www.cnblogs.com/yuanshuo/p/14940842.html

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