gpt4 book ai didi

python - 将 tkinter 光标应用到整个窗口

转载 作者:太空宇宙 更新时间:2023-11-04 04:44:53 26 4
gpt4 key购买 nike

我想知道如何做到这一点,如果您将鼠标悬停在窗口的任何部分上,加载光标就会显示出来,我知道如何只为一个小部件 (<Widget>(cursor="watch")) 做到这一点,但我不知道如何做到将它应用于整个窗口,它试图像 Tk(cursor="watch") 那样做但它只会给我和错误说它不接受那个论点。有人可以告诉我该怎么做吗?提前致谢

python 3

最佳答案

您可以使用 root['cursor'] = 'watch' 设置根游标属性

举个例子:

import tkinter as tk

if __name__ == '__main__':

root = tk.Tk()
root.geometry("250x50")

label_frame = tk.Frame(root)

w = tk.Label(label_frame, text="Label UNO", bg="red", fg="white", width=8, height=2)
w.pack(side=tk.LEFT)
w = tk.Label(label_frame, text="Label2", bg="green", fg="black", width=8, height=2)
w.pack(side=tk.LEFT)
w = tk.Label(label_frame, text="Label DREI", bg="blue", fg="white", width=8, height=2)
w.pack(side=tk.LEFT)

label_frame.pack()
label_frame.pack(expand=True)

root['cursor'] = "watch"

root.mainloop()

关于python - 将 tkinter 光标应用到整个窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49845551/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com