在主窗体的OnCreat事件中加入下列代码:
var
C: HCURSOR;
begin
C := LoadCursor(0, IDC_HAND);
if C <> 0 then Screen.Cursors[crHandPoint] := C;
end;
在主窗体的OnCreat事件中加入下列代码:
var
C: HCURSOR;
begin
C := LoadCursor(0, IDC_HAND);
if C <> 0 then Screen.Cursors[crHandPoint] := C;
end;
转载于:https://www.cnblogs.com/pcdelphi/archive/2010/01/12/2017970.html