C#在线程中更新UI

this.BeginInvoke(new Action(() =>
{
    update();  //此处放对UI进行操作的函数
}));
原文地址:https://www.cnblogs.com/xieqianli/p/15248852.html