Winfrom 异步加载数据与更新UI

            TaskScheduler uiContext = TaskScheduler.FromCurrentSynchronizationContext();
            Task t = Task.Factory.StartNew(() =>
            {
             

            }).ContinueWith(m =>
            {
              

            }, uiContext);
原文地址:https://www.cnblogs.com/CoreXin/p/14077810.html