Armando, miembro de nuestro staff, nos hizo el favor de redactar esta crónica ya que controla muy bien dicho tema.
Ejemplo 1: establecer el tamaño de la ventana tkinter
# Change window_name to the name of the window object, i.e. root
window_name.geometry("500x500")# To ensure widgets resize:
widget_name.pack(fill="both", expand=True)
Ejemplo 2: tamaño máximo de ventana de tkinter
from tkinter import*
root = Tk()
root.maxsize(height, width)
root.minsize(height, width)#(69, 420)
root.mainloop()
Ejemplo 3: python tkinter define el tamaño de la ventana
window = Tk()#set window size
window.geometry("widthxheight")
Ejemplo 4: tamaño de ventana de Python tkinter
#import statementfrom tkinter import*#create GUI Tk() variable
gui = Tk()#set window size
gui.geometry("widthxheight")
Ejemplo 5: posición del tamaño de la ventana de tkinter
window = Tk()# or window = TopLevel()# "350x150" == window size (350 pixels wide and 150 pixels high)# "+220+80" == window position (220 pixels from the left screen margin and# 80 pixels from the top screen margin
window.geometry("350x150+220+80")
Puntuaciones y reseñas
Al final de la artículo puedes encontrar las interpretaciones de otros gestores de proyectos, tú incluso tienes la habilidad insertar el tuyo si lo deseas.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)