【问题标题】:Tkinter / Python - disabling resizing of buttons when a window is resizedTkinter / Python - 调整窗口大小时禁用按钮大小调整
【发布时间】:2017-11-18 16:36:39
【问题描述】:

我有一个带有可以相互调整大小的列表框的窗口。我为此使用网格。列表框下方有一排按钮,当前正在随窗口移动和调整大小。我希望按钮保持原位并在窗口和列表框调整大小时保持一致的大小(因此按钮始终保留在列表框的左下角)。

有没有简单的方法来做到这一点?我今天刚开始使用 Tkinter,所以我可能只是在文档中错过了它,或者可能只是对网格布局感到困惑。

按钮设置如下:

nextbutton = Button(self, width = 30, height = 30, image = ffbtn)
nextbutton.image = ffbtn
nextbutton.bind("<Button-1>", self.forward)
nextbutton.grid(row = 10, column=4, sticky='w')

我已经尝试了所有粘性组合,但那些不调整按钮大小的组合仍然允许它们移动,这是我不想要的。

编辑:根据要求,这是我正在谈论的一个非常基本的示例。调整窗口大小时,按钮会彼此分开。我不想那样。

附带说明一下,我是否需要在最后配置所有这些网格来设置权重,即使我使用它的一列或一行而列/行跨度占用了所有空间?

import tkinter
from tkinter import *
from tkinter import ttk

class Application(tkinter.Tk):
    def __init__(self, parent):
        tkinter.Tk.__init__(self, parent)
        self.minsize(300,300)
        self.parent = parent
        self.main()

    def main(self):

        self.grid()

        listbox = tkinter.Listbox(self, width=20, height=25, bg = 'grey')
        listbox.grid(padx=30, pady=30, columnspan=11,  sticky='NEW')

        bt1 = Button(self, width = 5, height = 5)
        bt1.grid(row=10, column=0, padx=(30,0), sticky='w')

        bt2 = Button(self, width = 5, height = 5)
        bt2.grid(row = 10, column=1, sticky='w')

        bt3 = Button(self, width = 5, height = 5)
        bt3.grid(row = 10, column=2, sticky='w')

        bt4 = Button(self, width = 5, height = 5) 
        bt4.grid(row = 10, column=3, sticky='w')

        bt5 = Button(self, width = 5, height = 5)
        bt5.grid(row = 10, column=4, sticky='w')

        self.grid_columnconfigure(0,weight=1)
        self.grid_columnconfigure(1,weight=1)
        self.grid_columnconfigure(2,weight=1)
        self.grid_columnconfigure(3,weight=1)
        self.grid_columnconfigure(4,weight=1)
        self.grid_columnconfigure(5,weight=1)
        self.grid_columnconfigure(6,weight=1)
        self.grid_columnconfigure(7,weight=1)
        self.grid_columnconfigure(8,weight=1)
        self.grid_columnconfigure(9,weight=1)
        self.grid_columnconfigure(10,weight=1)      
        self.grid_rowconfigure(0,weight=1)
        self.grid_rowconfigure(1,weight=1)
        self.grid_rowconfigure(2,weight=1)
        self.grid_rowconfigure(3,weight=1)
        self.grid_rowconfigure(4,weight=1)
        self.grid_rowconfigure(5,weight=1)
        self.grid_rowconfigure(6,weight=1)
        self.grid_rowconfigure(7,weight=1)
        self.grid_rowconfigure(8,weight=1)
        self.grid_rowconfigure(9,weight=1)
        self.grid_rowconfigure(10,weight=1)

app = Application(None)
app.mainloop()

【问题讨论】:

标签: python user-interface button tkinter grid


【解决方案1】:

通过为网格中的所有行和列赋予非零权重,您可以明确地使它们随主窗口调整大小。

由于您只想调整列表框的大小,因此只为包含列表框的行和列之一赋予非零权重:

def main(self):
    ...
    # The default weight of all rows/columns is 0. Only modify it for row 0 and column 10
    self.grid_rowconfigure(0, weight=1)
    self.grid_columnconfigure(10, weight=1)

有关更多信息,请查看 packgridplace 方法的文档。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2021-09-20
    • 2011-05-18
    • 2012-01-28
    • 1970-01-01
    • 2019-05-15
    • 1970-01-01
    • 1970-01-01
    • 2018-03-01
    相关资源
    最近更新 更多