推荐代码:c# 异步更新UI 不阻塞 流畅,供大家学习参考。
复制代码 代码如下:
Task task = Task.Factory.StartNew(() =>
{
DoLongRunningWork(); // 耗时运算
});
Task UITask= task.
continueWith(() =>
{
this.TextBlock1.Text = "Complete"; //运算后 赋值
}, TaskScheduler.FromCurrentSynchronizationContext());
转自:http://www.cnblogs.com/zengxiangzhan/archive/2012/08/23/2652276.html