python tkinter 光标图标改变大小

python tkinter cursor icon change size

[在此处输入图片描述][1]我想将 Tkinter 上的鼠标图标更改为调整大小图标(当您将鼠标移到 window 的边缘时它会出现)。我知道我应该使用 root.configure(cursor="the name") 但我不知道名字,我在互联网机器人中搜索了一个长长的列表,其中 none 是我想要的。 请告诉我这个图标的名称。

this icon and horizontal and vertical type of it

根据this resource,你应该使用widget.configure(cursor="sb_h_double_arrow")。这是完整列表:

arrow
man
middlebutton
mouse
pencil
pirate
plus
question_arrow
right_ptr
right_side
right_tee
rightbutton
rtl_logo
sailboat
sb_down_arrow
sb_h_double_arrow
sb_left_arrow
sb_right_arrow
sb_up_arrow
sb_v_double_arrow
shuttle
sizing
spider
spraycan
star
target
tcross
top_left_arrow
top_left_corner
top_right_corner
top_side
top_tee
trek
ul_angle
umbrella
ur_angle
watch
xterm
X_cursor

希望对您有所帮助!