def footer(self):
# Run button
run_button = ttk.Button(self.master, text = "Run", command = self.run)
# Exit button
exit_button = ttk.Button(self.master, text = "Exit", command = self.close_window)
# Layout
run_button.place(relwidth = 0.1, relx = 0.9, rely = 1, x = -5, y = -5, anchor = "se")
exit_button.place(relwidth = 0.1, relx = 1, rely = 1, x = -5, y = -5, anchor = "se")
评论列表
文章目录