C#跨线程操作UI

WPF启动调度器 :


Dispatcher.Invoke(new Action(() =>
{
   //你的代码
}));

  

每天进步一点点。
原文地址:https://www.cnblogs.com/snow-zhang/p/10106692.html