我正在开发一个应该运行新任务的应用程序,制作一些东西并返回一个对象列表......
产生新任务时,我需要在我的 UI 线程中模拟一个在 for 循环中更改的进度条......并且在任务完成后,我必须更新我的视图(通过更新我的 ViewModel 属性的值,因为我正在使用MVVM 模式)。
问题是当任务启动时,GUI 冻结并且进度条没有更新!我认为任务是在一个单独的线程上在后台运行的(因为它们是池化的)。那为什么我的GUI被阻止了?
这是我的代码片段:
Task<List<Items>> myTask = Task.Factory.StartNew(() => queryHandler.GetItemssStatistics(items, sec, buyer, seller, From, To));
//Here is the simulation of ProgressBar changing that i need to be done when task is started
for (int i = 0; i < 100; i++)
{
Thread.Sleep(100);
StatusValue = i+1;
}
//Here is the section i need to do once the task finishes its execution to update my VM
//Wait for the task to finish its execution and retreive results:
List<Items> _tempResults = myTask.Result;
foreach (Items d in _tempResults)
{
ResultsList.Add(d);
}
if (ResultsList.Count == 0)
{
MessageBox.Show("Sorry, No items matched the defined research criteria!", "Warning",
MessageBoxButton.OK,
MessageBoxImage.Warning, MessageBoxResult.OK, MessageBoxOptions.ServiceNotification);
}
else
{
//Show items:
ResultsAvailable = Visibility.Visible;
}