Search code examples
c#mouse-cursor

c# set cursor to "Working in Background" cursor


How can I set a form's cursor to the Working in Background cursor? I know how to set it to the WaitCursor but I can't find the Working in Background (aka Busy Interactive) cursor. I'm using a background worker and figured this would be an easy way to inform the user what's going on.

Working In Background Cursor


Solution

  • Cursor.Current = Cursors.AppStarting;