我正在尝试将文本设置为标签Label_caller.Text = phone_number
并且我收到此错误:“System.InvalidOperationException:跨线程操作无效:控件'Label_caller'从其创建的线程以外的线程访问“。我该如何克服这个问题?我如何使用关键字Me?
答案 0 :(得分:14)
在Windows中,您只能在UI线程上访问UI元素。因此,如果您需要从另一个线程访问它们,您可能需要在UI线程上调用该操作。
您需要使用以下方法更新文本框。这将检查是否需要在主线程上调用,如果需要,在UI线程上调用相同的方法。
Private Sub UpdateTextBox(ByVal phone_number As String)
If Me.InvokeRequired Then
Dim args() As String = {phone_number}
Me.Invoke(New Action(Of String)(AddressOf UpdateTextBox), args)
Return
End IF
Label_caller.Text = phone_number
End Sub
答案 1 :(得分:-1)
我可能很晚才回答,但在表单加载事件中添加以下代码似乎解决了问题。
不确定它是否是完美的答案:
System.Windows.Forms.Control.CheckForIllegalCrossThreadCalls = False