System.InvalidOperationException:“线程间操作无效: 从不是创建控件“textBox1” 跨线程操作textbox控件
第一种:Invoke(newEventHandler(delegate{ttextBox1.Text=“要写入的文本信息”;}));第二种:.netFrameworkthis.Invoke(newAction(()=>{ttextBox1.Text=“要写入的文本信息”;}));第三种:WPFthis.Dispatcher.Invoke(newAction(()=>{ttextBox1.Text=