如何在 python 中强制窗口全屏(使用 easyGUI)
我刚刚开始使用 easyGUI 和 Python,并且遇到了一些麻烦。我希望我的应用程序全屏运行。但是,我不知道如何让它发挥作用。
这可以适用于任何 python/easyGUI 代码,例如像 hello world 这样简单的代码:
from easygui import *
msgbox("Hello, world!")
非常感谢您的建议!
I am just starting out using easyGUI with Python, and am running in to a bit of trouble. I want my application to run in full screen. However, I can not figure out how to get this to work.
This could apply to any python/easyGUI code, such as something as simple as hello world:
from easygui import *
msgbox("Hello, world!")
Your advice is much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为使用 EasyGUI 这是不可能的,因为 方法甚至允许宽度和高度参数;您为了易用性而牺牲了可扩展性。
这可以直接使用 Tkinter 来完成。这是使顶层覆盖全屏的一个很好的示例。
I don't think this is possible using EasyGUI, as none of the methods even allow for width and height arguments; you're sacrificing extensibility for ease of use.
This can be done with Tkinter directly. Here's a nice example for Making a Toplevel cover the Full Screen.