标签:
Thread thread = new Thread(p=> { Action action = new Action(() => { System.Windows.Forms.MessageBox.Show("test"); }); action.Invoke(); }); thread.IsBackground = true; thread.Start();
c# 跨线程调用控件的方法
原文地址:http://www.cnblogs.com/yzw-carrie/p/5607843.html