During the start of my windows application, I have to make a call to a web service to retrieve some default data to load onto my application. During the load of the form, I
Here is what I'm doing now, I hope this help.
private void LoadWaitCursor() { this.Dispatcher.Invoke((Action)(() => { Mouse.OverrideCursor = Cursors.Wait; })); } private void LoadDefaultCursor() { this.Dispatcher.Invoke((Action)(() => { Mouse.OverrideCursor = null; })); }