LINK: DESCARGAR ARCHIVOS
EJECUCIÓN DE PROGRAMA. |
#Aportacion.- Alan Hernandez Mijangos #Programa.- que toma un archivo GIF y lo muestra al hacer clic en un boton # -*- coding: utf-8 -*-import Tkinter as tk from Tkinter import * ventana = Tk() ventana.geometry('500x500') ventana.config(bg="black") ventana.title("Mostrando y ocultando un boton con una imagen") def btn_hide(): if b1.winfo_ismapped(): b1.place_forget() b2.configure(text="Mostrar carita", width=15) else: b1.place(x=100, y=50) b2.configure(text="Ocultar carita", width=15) imgBoton = PhotoImage(file="Logo_ITM.gif") b1 = Button(ventana, text="Boton 1", image=imgBoton, fg="black", width=300) b1.place(x=90, y=50) b2 = Button(ventana, text="Ocultar carita", command=btn_hide, fg="black", width=15) b2.place(x=130, y=280) ventana.mainloop()
No hay comentarios:
Publicar un comentario