How to

change cursor

Published: 14. December 2008 | Updated: 10. November 2011
License: Microsoft Public License (MS-PL)
Categories: Winforms
Tags: C# UI Windows Winforms
Was this snippet helpful for you? YESYES / NONO

Snippet example shows how to change mouse cursor
// in control

// wait cursor
this.Cursor = Cursors.WaitCursor;

// default
this.Cursor = Cursors.Default;
Send us feedback about this snippet »



Related Snippets: