wpf – 在不冻结UI的情况下运行长任务

前端之家收集整理的这篇文章主要介绍了wpf – 在不冻结UI的情况下运行长任务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在后台执行操作,而不会冻结UI.

当然,我可以使用BackgroundWorker.

但是,我只想使用Task API.

我试过了:

async void OnTestLoaded(object sender,RoutedEventArgs e)
{
   await LongOperation();
}
// It freezes the UI

async void OnTestLoaded(object sender,RoutedEventArgs e)
{
   var task = Task.Run(()=> LongOperation());
   task.Wait();
}


// It freezes the UI

我应该回到BackgroundWorker吗?或者只有使用任务的解决方案?

你非常接近.
async void OnTestLoaded(object sender,RoutedEventArgs e)
{
  await Task.Run(() => LongOperation());
}

异步does not execute a method on a thread pool thread.

Task.Run在线程池线程上执行操作,并返回表示该操作的Task.

如果在异步方法中使用Task.Wait,则为doing it wrong.您应该等待异步方法中的任务,永远不会阻塞它们.

原文链接:https://www.f2er.com/windows/364783.html

猜你在找的Windows相关文章