“Tkinter maximiser la fenêtre” Réponses codées

Tkinter maximiser la fenêtre

import Tkinter

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

MyRoot.mainloop()
Elegant Elk

tkinter start maximisé

root.state('zoomed')
Horrible Hamerkop

Tkinter maximiser la fenêtre

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

Tkinter maximiser la fenêtre

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

Réponses similaires à “Tkinter maximiser la fenêtre”

Questions similaires à “Tkinter maximiser la fenêtre”

Plus de réponses similaires à “Tkinter maximiser la fenêtre” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code