首页 > 编程 > C# > 正文

C#在子线程中更新窗口部件的写法

2020-01-24 01:43:33
字体:
来源:转载
供稿:网友
  if (textBox1.InvokeRequired)      {        textBox1.Invoke(new MethodInvoker(delegate        {          textBox1.AppendText(sb.ToString());        }));      }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表