Setting the Cursor in C Sharp

From PeformIQ Upgrade
Jump to navigation Jump to search

C# Setting the Cursor

            Cursor.Current = Cursors.WaitCursor;
            
            ...;

            Cursor.Current = Cursors.Default;