以下のコードを使用すると、プログラムを終了するときに矢印カーソルに戻す必要がありますが、カーソルはシステム全体で変更されます。他にも良い方法があれば、私はあなたの応答に感謝します。
from ctypes import *
import win32con
SetSystemCursor = windll.user32.SetSystemCursor #reference to function
SetSystemCursor.restype = c_int #return
SetSystemCursor.argtype = [c_int, c_int] #arguments
LoadCursorFromFile = windll.user32.LoadCursorFromFileA #reference to function
LoadCursorFromFile.restype = c_int #return
LoadCursorFromFile.argtype = c_char_p #arguments
CursorPath = "../cursor/MyCross.cur"
NewCursor = LoadCursorFromFile(CursorPath)
if NewCursor is None:
print "Error loading the cursor"
elif SetSystemCursor(NewCursor, win32con.IDC_ARROW) == 0:
print "Error in setting the cursor"