Python:Easygui窗口大小

时间:2013-09-04 21:16:52

标签: python easygui

我正在为EasyGUI中的python脚本创建一个GUI。有谁知道我可以改变默认窗口大小的方法?默认值太大了。

感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

在安装之前打开easygui.py并编辑您希望拥有其他尺寸的元素。 (您也可以重新安装并覆盖它) 这将像

一样
boxRoot.minsize(root_width, root_height)

在相应的功能中 为了更灵活,添加宽度和高度作为函数的参数。

def __choicebox(msg
               , title
               , choices
               , width_ = 480
               , height_ = 320
               ):
 ....
  root_width    = width_
  root_height   = height_
  root_xpos     = int((screen_width * 0.1))
  root_ypos     = int((screen_height * 0.05))

  boxRoot.title(title)
  boxRoot.iconname('Dialog')
  rootWindowPosition = "+0+0"
  boxRoot.geometry(rootWindowPosition)
  boxRoot.expand=NO
  boxRoot.minsize(root_width, root_height)

答案 1 :(得分:1)

我伪造了GitHub中的代码,因为尺寸问题弄乱了选择框,我做了以下......我不知道这是不是一个好的修复,但它似乎有效根据msg,标题和选择列表的长度,至少屏幕宽度变量:

... choices = list(选项[:])

添加行

choiceLen = len(max(choices,key=len))
titleLen = len(title)
msgLen = len(msg)
maxLen = max(choiceLen,titleLen,msgLen)

...

root_width = int((screen_width * 0.8))

root_width = int(maxLen * 10.)