跨线程访问Winform控件


this.Invoke(new Action(()=>{
this.TextBox1.Text="Hello,World";
}));

相关