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

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

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

  

posted @ 2012-07-24 21:45  ascrat  阅读(135)  评论(0编辑  收藏  举报