Hello everybody,
In my program with a UI in WinForm. I set the cursor to a hourglass just before to launch a method in ThreadPool.
My code in UI thread to set the cursor looks like this :
Application.UseWaitCursor = true;
When the method is finished, i go back to the UI Thread to set the cursor to the normal case.
Application.UseWaitCursor = false;
My problem is the cursor stay to the Hourglass till I don't move the mouse. It's a little bit disturbing if the user wait on the end of the action without moving the mouse.
Anyone can help me ?
Jérôme