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

时间:2011-10-22 07:28:29

标签: python fullscreen easygui

我刚刚开始在Python中使用easyGUI,并且遇到了一些麻烦。我希望我的应用程序以全屏运行。但是,我无法弄清楚如何让它发挥作用。

这可以应用于任何python / easyGUI代码,例如像hello world这样简单的代码:

from easygui import *
msgbox("Hello, world!")

非常感谢您的建议!

1 个答案:

答案 0 :(得分:2)

我认为这不可能使用EasyGUI,因为methods都没有允许宽度和高度参数;你为了易于使用而牺牲了可扩展性。

这可以直接用Tkinter完成。这是Making a Toplevel cover the Full Screen的一个很好的例子。