Python Tkinter Cursors



Python Tkinter Cursors 支持相当多的不同可用鼠标光标。确切的图形可能会因您的操作系统而异。

这是有趣的列表 -

  • "arrow"
  • "circle"
  • "clock"
  • "cross"
  • "dotbox"
  • "exchange"
  • "fleur"
  • "heart"
  • "heart"
  • "man"
  • "mouse"
  • "pirate"
  • "plus"
  • "shuttle"
  • "sizing"
  • "spider"
  • "spraycan"
  • "star"
  • "target"
  • "tcross"
  • "trek"
  • "watch"

通过在不同的按钮上移动光标来尝试以下示例 -


from tkinter import *
import tkinter

top = Tk()
B1 = Button(top, text ="circle", relief=RAISED,\ cursor="circle")
B2 = Button(top, text ="plus", relief=RAISED,\ cursor="plus")

B1.pack()
B2.pack()
top.mainloop()