Thread t1 = new Thread(delegate()//匿名方法
{
this.Invoke(new Action(delegate() //这里的this就是主线程UI的form
{
//...调用主线程UI控件的操作
}));
});
t1.IsBackground = true;
t1.Start();
{
this.Invoke(new Action(delegate() //这里的this就是主线程UI的form
{
//...调用主线程UI控件的操作
}));
});
t1.IsBackground = true;
t1.Start();