-1
Hello! I would like to know how to put the screen in a smaller size on Python Tkinter. The program below leaves in full screen. So far I can not change the size.
from tkinter import *
janela = Tk()
janela.title(" >>> Janela menor sem a Barra de Título <<< ")
janela.wm_attributes('-fullscreen','true') # retira a barra de título
janela.mainloop()
Hello! Until yesterday I had not found the answer but after your tip I decided to do another search on the internet and right here on the site I found the answer using overrideredirect(True) instead of wm_attributes('-fullscreen','true'). I’ll put the code further down. Thank you.
– Sandro Ganske