2

我正在学习 Task 的工作原理。我一直使用 BackgroundWorker 类或 Threading.Thread 类,所以我想尝尝 Task Factory。

在我正在构建的以下示例中,我恢复了一个

 Task<List<People>>

并为其分配一个“ContinueWith”,我希望在任务完成后调用它。

我已经完成了一些之前的例子,这些例子非常棒,但这一个冻结了我的

启动应用程序时的主窗体 UI。(我看不出与我做过的其他例子有什么不同)。

你们知道为什么我的主界面冻结了吗?

PS:我知道我声明

System.Threading.Tasks.TaskScheduler scheUI

在任务声明上。我现在不使用,但稍后会使用。

提前致谢:

这是代码:

 private void PopulateList(List<People> list)
            {
                if (listBox1.InvokeRequired)
                { 
                 listBox1.Invoke((MethodInvoker) delegate {

                     foreach (People item in list)
                    {
                        listBox1.Items.Add(item.name + " " + listBox1.Items.Add(item.surname));   
                    }

                 });
            }
        }



private Task<List<People>> GetPeopleListAsync(int PeopleNuber, int delaysecs)
        { 
         TaskScheduler scheUI = TaskScheduler.FromCurrentSynchronizationContext();
            return Task<List<People>>.Factory.StartNew( () =>
                {
                    List<People> listado = new List<People>();

                    for (int i = 0; i < PeopleNuber; i++)
                    {
                        People people = new People
                        {
                            name = "Name" + i.ToString(),
                            surname = "Surname " + i.ToString()
                        };

                        Thread.Sleep(delaysecs * 200);
                        listado.Add(people);
                    }

                    return listado;


                },CancellationToken.None,
                 TaskCreationOptions.None,scheUI);

        }


 void Form1_Load(object sender, EventArgs e)
 {


            Task<List<People>> task = GetPeopleListAsync(5, 10);
            task.ContinueWith(p => PopulateList(task.Result));
 }
4

1 回答 1

4

您正在使用以下方式将第一个任务与 UI 线程同步:

System.Threading.Tasks.TaskScheduler scheUI = System.Threading.Tasks.TaskScheduler.FromCurrentSynchronizationContext();

从第一个任务中删除 scheUI 调度程序:

return System.Threading.Tasks.Task<List<People>>.Factory.StartNew( () =>
            {
                List<People> listado = new List<People>();

                for (int i = 0; i < PeopleNuber; i++)
                {
                    People people = new People
                    {
                        name = "Name" + i.ToString(),
                        surname = "Surname " + i.ToString()
                    };

                    System.Threading.Thread.Sleep(delaysecs * 200);
                    listado.Add(people);
                }

                return listado;


            });

您应该将同步添加到执行的第二个任务以更新您的 UI:

System.Threading.Tasks.TaskScheduler scheUI = System.Threading.Tasks.TaskScheduler.FromCurrentSynchronizationContext();
task.ContinueWith(p => PopulateList(task.Result),CancellationToken.None,
                              TaskContinuationOptions.ExecuteSynchronously |
                              TaskContinuationOptions.OnlyOnRanToCompletion,
                              scheUI);
于 2012-11-29T16:23:02.020 回答