📌  相关文章
📜  如何在 tkinter 中的按钮悬停时更改光标 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:05.008000             🧑  作者: Mango

代码示例2
import tkinter as tk

root = tk.Tk()

# cursor="hand1" or cursor="hand2"
tk.Button(root, text="Start", cursor="hand2")

root.mainloop()