cursor.current

Cursor.Current vs. this.Cursor in .Net (C#)

Is there a difference between Cursor.Current and this.Cursor (where "this" is a WinForm) in .Net? I've always used this.Cursor and have had very good luck with it but I've recently started using CodeRush and just embedded some code in a "Wait Cursor" block and CodeRush used the Cursor.Current property. I've seen on the Internet and at wo...

Change global mouse cursor in .NET

I need ability to modify the cursor while my application is running, and restore it afterwards. Cursor.Current doesn't seem to work. Any other alternatives? Is there any API for this? Thanks ...