Answers for "tkinter in maximum size button"

6

tkinter max size

from tkinter import *
root = Tk()
root.maxsize(height, width)
root.minsize(height, width) #(69, 420)
root.mainloop()
Posted by: Guest on March-26-2020
1

set size of button tkinter

button = tkinter.Button()
button.config(height=100, 
			  width=100)
Posted by: Guest on March-10-2020

Python Answers by Framework

Browse Popular Code Answers by Language