2015-06-10 133 views
-1

如何更改此消息框出現在窗口的大小?我自己建立了這個盒子,讓我把選項改爲「謝謝」。基本Python消息框大小更改

這是到目前爲止我的代碼:

def messageWindow(): 
    win = Toplevel() 
    win.title('warning') 
    message = "This will delete stuff" 
    Label(win, text=message).pack() 
    Button(win, text='Thanks!', command=win.destroy).pack() 

回答

1

你可以使用geometry方法來設置窗口的尺寸。

例子:

win.geometry("500x500") 
+0

非常感謝,新的是簡單的,都不好意思了! – Jamie