Async Program still freezing up the UI
问题 Hello I'm writing a WPF program that gets has thumbnails inside a ThumbnailViewer. I want to generate the Thumbnails first, then asynchronously generate the images for each thumbnail. I can't include everything but I think this is whats relevant Method to generate the thumbnails. public async void GenerateThumbnails() { // In short there is 120 thumbnails I will load. string path = @"C:\....\...\...png"; int pageCount = 120; SetThumbnails(path, pageCount); await Task.Run(() => GetImages(path,