使用Tkinter将窗口设置为固定大小
该程序将根据checkbox创build一个显示消息的窗口。
from Tkinter import * class App: def __init__(self,master): self.var = IntVar() frame = Frame(master) frame.grid() f2 = Frame(master,width=200,height=100) f2.grid(row=0,column=1) button = Checkbutton(frame,text='show',variable=self.var,command=self.fx) button.grid(row=0,column=0) msg2="""I feel bound to give them full satisfaction on this point""" self.v= Message(f2,text=msg2) def fx(self): if self.var.get(): self.v.grid(column=1,row=0,sticky=N) else: self.v.grid_remove() top = Tk() app = App(top) top.mainloop()
当显示消息并且不显示消息时,如何使窗口大小保持不变。
此代码使用户无法更改Tk()
窗口大小的条件生成窗口,并禁用最大化button。
import tkinter as tk root = tk.Tk() root.resizable(width=False, height=False) root.mainloop()
在程序中,你可以用@ Carpetsmoker的答案来改变窗口的尺寸,或者这样做:
root.geometry('{}x{}'.format(<widthpixels>, <heightpixels>))
在你的代码中实现它应该相当容易。 🙂
您可以使用最小和最大尺寸来设置最小和最大尺寸,例如:
def __init__(self,master): master.minsize(width=666, height=666) master.maxsize(width=666, height=666)
将给你的窗口固定宽度和666像素的高度。
或者,只是使用minsize
def __init__(self,master): master.minsize(width=666, height=666)
将确保您的窗口总是至less 666像素大,但用户仍然可以扩大窗口。
你可以使用:
parentWindow.maxsize(#,#); parentWindow.minsize(x,x);
在代码的底部设置固定的窗口大小。