繁体   English   中英

如何删除tkinter中按钮之间的空间?

[英]How to remove space between buttons in tkinter?

在我的应用程序中,我看到彩色按钮之间有很多我不想要的空间,我该如何删除它们? 我尝试使用button.pack(pady=0)作为按钮,但没有任何效果

我的 tkinter 应用的屏幕截图显示了按钮之间的巨大差距

我在这里添加了我的代码并尝试只放置代码的相关部分

我添加了画布,所以我可以用它添加滚动条。 我使用按钮是因为我想添加一个方法来显示可以编辑/删除任务的页面。

class TodoFrame(Frame):
    def __init__(self, parent, controller):
        Frame.__init__(self, parent)

        self.canvas = Canvas(self)
        self.scrollbar = Scrollbar(self, orient="vertical", command=self.canvas.yview)
        task_frame = Frame(self.canvas, height=self.winfo_height()-100)
        task_frame.pack(fill="x", expand=True)
        self.canvas.create_window(0, 0, anchor='center', window=task_frame, width=self.winfo_width(), height=self.winfo_height()-100)

        priority_colors = ("#00CED1", "#00FA9A", "#FF6347", "#B0C4DE")  # colors for buttons
        # the db.fetch_incomplete_tasks() fetches tasks from mysql database
        # and returns a list of tuples containing title, description, priority and completion status of the task
        self.incomplete_tasks = sorted(db.fetch_incomplete_tasks(), key=lambda x: x[2])  # sorting list by priority
        if self.incomplete_tasks:
            incomplete_task_label = Label(task_frame, text="Incomplete Tasks", font=('calibri', 16))
            incomplete_task_label.pack(padx=(50, 0), anchor="center")
            
            for task in self.incomplete_tasks:
                title, description, priority, status = task
                task_btn = Button(task_frame, text=title, bg=priority_colors[priority-1], bd=0, width=25, wraplength=400, justify="left", pady=5)
                task_btn.pack(expand=True, padx=(50,0))

所以问题是我在这一行中设置了画布的高度self.canvas.create_window(0, 0, anchor='center', window=task_frame, width=self.winfo_width(), height=self.winfo_height()-100)

这导致了额外空间的形成,按钮之间的空间是为了填补这个空白

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM