Async Task Still Blocking UI Thread
问题 I'm reallt trying to get my head around async/await and Tasks . I'm trying to get one method down so that I can use it throughout my program. Basically I have my own version of BusyIndicator that I want to display whilst work is being done. Here is a basic example; private async void OnPageLoad(object sender, RoutedEventArgs e) { var waitWindow = new PleaseWaitWindow(); waitWindow.Show(); await LoadCompanyContracts(); waitWindow.Close(); } private async Task LoadCompanyContracts() { await