防止 Tkinter 网格动态调整单元格大小
Prevent Tkinter grid from dynamically resizing cells
我有一个 Tkinter class,其中有一个网格,每个网格行的权重应该与行配置中规定的相同,并且网格的内容不应影响网格尺寸,因为我关闭传播。
只要我在网格中有带有背景颜色的空框架,这就可以正常工作,但是只要我在顶部网格行中添加一个按钮,该行的大小就会比其他行增加大约正好是按钮本身。代码如下:
class MainMenuPage(tkinter.Frame):
def __init__(self,parent,controller):
tkinter.Frame.__init__(self,parent)
self.controller=controller
self.columnconfigure(0,weight=1)
self.rowconfigure(0,weight=1)
self.rowconfigure(1,weight=1)
self.rowconfigure(2,weight=1)
self.rowconfigure(3,weight=1)
self.grid_propagate(0);
self.color0=tkinter.Frame(self,bg="#bd1e2b")
self.color0.grid(column=0,row=0,sticky="nesw")
self.color1=tkinter.Frame(self,bg="#1e1ebd")
self.color1.grid(column=0,row=1,sticky="nesw")
self.color2=tkinter.Frame(self,bg="#1ebd48")
self.color2.grid(column=0,row=2,sticky="nesw")
self.color3=tkinter.Frame(self,bg="#bdb81e")
self.color3.grid(column=0,row=3,sticky="nesw")
image=Image.open("/path/settingsIcon.png")
image=image.resize((54,54),Image.ANTIALIAS)
self.settingsIcon=ImageTk.PhotoImage(image)
self.settingsButton=tkinter.Button(self,compound=tkinter.TOP,width=54,height=54,image=self.settingsIcon,command=lambda:self.controller.showPage("valveMain"))
self.settingsButton.grid(column=0,row=0,sticky="ne")
如何防止网格在添加按钮时改变大小?
我不完全理解你想要完成的事情。如果目标是确保每一行 and/or 列的大小相同,您可以将行和列配置为统一组的一部分。 weight
单独不会这样做,因为它只配置额外 space 的分配方式,它不控制行或列的绝对大小。
要创建统一组,请对 row_configure
和 column_configure
使用 uniform
选项。同一个统一组中的所有行或列将具有与其权重成比例的相同大小。如果它们的重量相同,则它们的尺寸将相同。
来自规范 tcl/tk 文档:
The -uniform option, when a non-empty value is supplied, places the row in a uniform group with other rows that have the same value for -uniform. The space for rows belonging to a uniform group is allocated so that their sizes are always in strict proportion to their -weight values.
对于你的情况,你可以尝试这样的事情:
self.rowconfigure(0,weight=1, uniform='row')
self.rowconfigure(1,weight=1, uniform='row')
self.rowconfigure(2,weight=1, uniform='row')
self.rowconfigure(3,weight=1, uniform='row')
有关详细信息,请参阅 tcl/tk 文档中的 The grid algorithm。它准确描述了网格算法的工作原理。
我有一个 Tkinter class,其中有一个网格,每个网格行的权重应该与行配置中规定的相同,并且网格的内容不应影响网格尺寸,因为我关闭传播。
只要我在网格中有带有背景颜色的空框架,这就可以正常工作,但是只要我在顶部网格行中添加一个按钮,该行的大小就会比其他行增加大约正好是按钮本身。代码如下:
class MainMenuPage(tkinter.Frame):
def __init__(self,parent,controller):
tkinter.Frame.__init__(self,parent)
self.controller=controller
self.columnconfigure(0,weight=1)
self.rowconfigure(0,weight=1)
self.rowconfigure(1,weight=1)
self.rowconfigure(2,weight=1)
self.rowconfigure(3,weight=1)
self.grid_propagate(0);
self.color0=tkinter.Frame(self,bg="#bd1e2b")
self.color0.grid(column=0,row=0,sticky="nesw")
self.color1=tkinter.Frame(self,bg="#1e1ebd")
self.color1.grid(column=0,row=1,sticky="nesw")
self.color2=tkinter.Frame(self,bg="#1ebd48")
self.color2.grid(column=0,row=2,sticky="nesw")
self.color3=tkinter.Frame(self,bg="#bdb81e")
self.color3.grid(column=0,row=3,sticky="nesw")
image=Image.open("/path/settingsIcon.png")
image=image.resize((54,54),Image.ANTIALIAS)
self.settingsIcon=ImageTk.PhotoImage(image)
self.settingsButton=tkinter.Button(self,compound=tkinter.TOP,width=54,height=54,image=self.settingsIcon,command=lambda:self.controller.showPage("valveMain"))
self.settingsButton.grid(column=0,row=0,sticky="ne")
如何防止网格在添加按钮时改变大小?
我不完全理解你想要完成的事情。如果目标是确保每一行 and/or 列的大小相同,您可以将行和列配置为统一组的一部分。 weight
单独不会这样做,因为它只配置额外 space 的分配方式,它不控制行或列的绝对大小。
要创建统一组,请对 row_configure
和 column_configure
使用 uniform
选项。同一个统一组中的所有行或列将具有与其权重成比例的相同大小。如果它们的重量相同,则它们的尺寸将相同。
来自规范 tcl/tk 文档:
The -uniform option, when a non-empty value is supplied, places the row in a uniform group with other rows that have the same value for -uniform. The space for rows belonging to a uniform group is allocated so that their sizes are always in strict proportion to their -weight values.
对于你的情况,你可以尝试这样的事情:
self.rowconfigure(0,weight=1, uniform='row')
self.rowconfigure(1,weight=1, uniform='row')
self.rowconfigure(2,weight=1, uniform='row')
self.rowconfigure(3,weight=1, uniform='row')
有关详细信息,请参阅 tcl/tk 文档中的 The grid algorithm。它准确描述了网格算法的工作原理。