C# Control.Invoke匿名委托

if (txbValue.InvokeRequired)

txbValue.Invoke(new MethodInvoker(delegate() {
                            txbValue.Text = “test”;
                        }));

原文地址:https://www.cnblogs.com/94cool/p/8523845.html