“Listener” for detect changes on mouse icon
问题 I seen here a code that retrieves the current icon of mouse as string, but this code had uses a TTimer for make it. So, i want know if exist some event (Listener) for detect these change on mouse cursor icon. Below is code that uses a TTimer : const HighCursor = 13; type TForm1 = class(TForm) Timer1: TTimer; Label1: TLabel; procedure FormCreate(Sender: TObject); procedure Timer1Timer(Sender: TObject); private FCursorHandles: array [0..HighCursor] of HCURSOR; public end; var Form1: TForm1;