C# this.Invoke和this.BeginInvoke 最简单的写法
时间:2018-09-30 14:07:49
收藏:0
阅读:1610
https://blog.csdn.net/gtosky4u/article/details/20118813
-
-
this.BeginInvoke(new EventHandler(delegate {
-
this.textBox1.Text += "2";
-
}));
-
this.Invoke(new EventHandler(delegate {
-
this.textBox1.Text += "2";
-
}));
-
-
原文:https://www.cnblogs.com/LuoEast/p/9728845.html
评论(0)