gpt4 book ai didi

python - 如何在 macOS 上全屏显示 tkinter 应用程序?

转载 作者:太空宇宙 更新时间:2023-11-03 15:54:37 24 4
gpt4 key购买 nike

我刚刚在学习 python,我正在尝试让一个窗口全屏显示,我已经做到了,但我现在想摆脱顶部的标题栏。它目前看起来像下图,但我希望它也能越过顶部的 Mac 顶部工具栏(如启动画面)。

enter image description here

from tkinter import *
root = Tk()

root.attributes('-fullscreen', True)
root.attributes('-topmost', True)
root.overrideredirect(True)



def quitApp():
# mlabel = Label (root, text = 'Close').pack()
root.destroy()

# placing the button on my window
button = Button(text = 'QUIT', command = quitApp).pack()

最佳答案

我相信你想做的是使用

root.wm_attributes('-fullscreen','true')

试试这个。它应该可以解决问题。

from tkinter import *
root = Tk()

root.wm_attributes('-fullscreen','true')

def quitApp():
root.destroy()

button = Button(text = 'QUIT', command = quitApp).pack()

root.mainloop()

如果由于 MacOS 而无法正常工作,请查看此 link这个有用的页面有几个关于如何在 tkinter 中管理 mack windows 的例子。我相信您可能需要什么才能获得无边框全屏。

这段代码可能是您所需要的:

root.tk.call("::tk::unsupported::MacWindowStyle", "style", root._w, "plain", "none")

注意:如果您确实使用此选项,则需要从您的代码中删除 root.wm_attributes('-fullscreen','true') 或将其注释掉。

更新:

还有一些 tkinter 8.5+ 的代码。

如果您将 python 与 tkinter 8.5 或更新版本一起使用:

root.wm_attributes('-fullscreen', 1)

关于python - 如何在 macOS 上全屏显示 tkinter 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44328765/

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