我有一个从串口接收数据的类。我曾经action<T> delegate
将数据传递给在文本框中显示的表单。问题是我无法访问textbox
控件,因为它说:Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on
。
所以我设置Control.CheckForIllegalCrossThreadCalls = false
了,它正在工作。
这样做是个好主意吗?或者有更好的方法。
谢谢