对InvokeRequired的理解

            if (listBox1.InvokeRequired)                            //当有新工作进程访问控件时InvokeRequired为True
            {
                MyInvoke myinvoke = new MyInvoke(SetListBoxValue); // 定义委托对象 里边的SetListBoxValue是个方法
                listBox1.Invoke(myinvoke, new object[] { values});     // 用当前工作进程对控件进行访问  

          }
            else     // 向ListBox添加数据
            {
                foreach ()
                {
                    listBox1.Items.Add();
                }

posted @ 2017-04-13 18:51  (时光)光阴飞逝  阅读(2833)  评论(0编辑  收藏  举报