from tkinter import * Vent1 = Tk() # Tk() Es la ventana principal
Vent1.title("ventana de figura con boton") Vent1.config(bg="green") # Le da color al fondo
Vent1.geometry("500x500") # Cambia el tamao de la ventanaVen2=Toplevel(Vent1) def ejecutar(f): Vent1.after(200, f) # Una forma de ejecutar las funciones def rectangulo(ventana): rectangulo = Canvas(Ven2,width=210, height=210, bg='red') #Parametro de ventana en la que se creará, tamaño y color rectangulo.pack(expand=YES, fill=BOTH) rectangulo.create_rectangle(10, 10, 200, 200, width=5, fill="blue") BotonRec = Button(Vent1, text="Ver Rectangulo", command=lambda: ejecutar(rectangulo(Vent1))) # Primer botonBotonRec.pack() Vent1.mainloop()
No hay comentarios:
Publicar un comentario