I have an application that takes a couple of seconds to run. Is it possible to make the mouse with the busy icon while the app is processing?
Current = new Cursor("C:\\ic. cur");
Use Cursor.WaitCursor property.
You can use:
Cursor.Current = Cursors.WaitCursor;
and as long as there is some processing going on in a
WinForms
application, the cursor stays in theWaitCursor
state.You can as well use your custom designed cursors:
Cursor.Current = new Cursor("C:\\Cursors\\MyWait.cur");
source: http://bytes.com/topic/c-sharp/answers/238623-how-change-mouse-cursor-busy-state
You need to set the form's UseWaitCursor
property to true
. (And remember to set it to false
again afterwords, preferably in a finally
block)
You can also set Application.UseWaitCursor
to true
to apply it to every form.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With