| How to change mouse pointer in C# winform |
|
Sometimes we need to change the mouse pointer in the application to give user an indication of the application status. For example if the application is perform a long running process then we would show the user the wait cursor. You can simply change the mouse pointer cursor by using this: this.Cursor = Cursors.Arrow; Here is a lists of the possible system cursors you could have.
|