“tknter maximize a janela” Respostas de código

Tknter maximize a janela

import Tkinter

MyRoot = Tkinter.Tk()
MyRoot.state("zoomed")

MyRoot.mainloop()
Elegant Elk

O início do Tinter maximizado

root.state('zoomed')
Horrible Hamerkop

tknter maximize a janela

screen_width, screen_height = root.winfo_screenwidth(), root.winfo_screenheight()
root.geometry("{}x{}".format(screen_width, screen_height))
ARtemachka

Tknter maximize a janela

root = Tk()
w, h = root.winfo_screenwidth(), root.winfo_screenheight()
root.geometry("%dx%d+0+0" % (w, h))
Elegant Elk

Respostas semelhantes a “tknter maximize a janela”

Perguntas semelhantes a “tknter maximize a janela”

Mais respostas relacionadas para “tknter maximize a janela” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código