0

if (InvokeRequired) { BeginInvoke((Action)(() => { btnEnd.Enabled = true; })); }

4

1 回答 1

0
If InvokeRequired Then
    BeginInvoke(DirectCast(Function() 
    btnEnd.Enabled = True

End Function, Action))
End If
于 2013-07-23T13:36:47.037 回答