如何在 python 中强制窗口全屏(使用 easyGUI)

发布于 2024-12-11 08:09:24 字数 222 浏览 0 评论 0原文

我刚刚开始使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橪书 2024-12-18 08:09:24

我认为使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文