我有一个下面的代码的方法:

object frm = null;

// shows the overlay loading mask
Core.ShowLoadingMask("Please wait...");

// start task
Task.Factory.StartNew(() => {

    // go to server and get the data
    var employee = new Data.Entities.Employee(employeeId);

    // instantiate the class type (reflection)
    frm = Activator.CreateInstance(type, employee );

}).ContinueWith((task) => {

    // hide loading mas
    Core.HideLoadingMask();

    if (frm != null) this.Panel.Controls.Add(frm);

});


因此,如何强制ContinueWith()中的代码强制使用当前线程,或者我做错了。

我需要的过程是:


从服务器获取数据之前显示加载掩码
从服务器获取数据(可能需要3秒钟)
之后,退出任务并隐藏加载蒙版。


有什么线索吗?

最佳答案

TaskScheduler.FromCurrentSynchronizationContext()传递给ContinueWith() ...

.ContinueWith((task) => {
    // hide loading mas
    Core.HideLoadingMask();

    if (frm != null) this.Panel.Controls.Add(frm);
}, TaskScheduler.FromCurrentSynchronizationContext());

10-08 04:48