Answers for "change cursor pos c#"

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

c# set cursor pos

use System.Runtime.InteropServices;

[DllImport("user32.dll")]
static extern bool SetCursorPos(int X, int Y);
Posted by: Guest on August-08-2021

C# Answers by Framework

Browse Popular Code Answers by Language