这个C#代码的VB.net代码是什么:

时间:2013-07-23 13:30:33

标签: c#-to-vb.net

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

1 个答案:

答案 0 :(得分:0)

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

End Function, Action))
End If
相关问题