我正在尝试在后台执行操作,而不会冻结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吗?或者只有使用任务的解决方案?
你非常接近.
原文链接:https://www.f2er.com/windows/364783.htmlasync 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.您应该等待异步方法中的任务,永远不会阻塞它们.