不建议更改系统光标,因为必须在程序退出后恢复光标,如果程序失败,则用户会被自定义光标卡住,必须从系统设置中重置光标。
出于好奇,可以使用SetSystemCursor
,例如
ctypes.windll.user32.SetSystemCursor(hcursor, 32512) #OCR_NORMAL
请参阅文档和OCR_NORMAL
其他游标常量。
您可以尝试保存旧光标并恢复它,同样,如果您的程序异常退出,此方法将失败。
import win32con
import win32api
import win32gui
import ctypes
import time
import atexit
#save system cursor, before changing it
cursor = win32gui.LoadImage(0, 32512, win32con.IMAGE_CURSOR,
0, 0, win32con.LR_SHARED)
save_system_cursor = ctypes.windll.user32.CopyImage(cursor, win32con.IMAGE_CURSOR,
0, 0, win32con.LR_COPYFROMRESOURCE)
def restore_cursor():
#restore the old cursor
print("restore_cursor");
ctypes.windll.user32.SetSystemCursor(save_system_cursor, 32512)
ctypes.windll.user32.DestroyCursor(save_system_cursor);
#Make sure cursor is restored at the end
atexit.register(restore_cursor)
#change system cursor
cursor = win32gui.LoadImage(0, "file.cur", win32con.IMAGE_CURSOR,
0, 0, win32con.LR_LOADFROMFILE);
ctypes.windll.user32.SetSystemCursor(cursor, 32512)
ctypes.windll.user32.DestroyCursor(cursor);
time.sleep(3)
exit