C#跨线程更新UI的简单方式

跨线程安全调用的简单方式

this.Invoke((Action) delegate
{
    button.Enabled = true;
});

  

原文地址:https://www.cnblogs.com/ascrat/p/2607270.html