Answers for "c# override cursor custom"

C#
3

c# change cursor

// Set cursor as hourglass
Cursor.Current = Cursors.WaitCursor;

// Execute your time-intensive hashing code here...

// Set cursor as default arrow
Cursor.Current = Cursors.Default;
Posted by: Guest on March-29-2020
0

how to make a custom cursor in windows forms c#

"name of control".Cursor = new System.Windows.Forms.Cursor(Properties.Resources."name of image".Handle);
Posted by: Guest on October-21-2020

C# Answers by Framework

Browse Popular Code Answers by Language