Skip to content

Instantly share code, notes, and snippets.

@nicanor-romerovenier
Created September 21, 2016 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicanor-romerovenier/532ce88551ceda9931a8be7d56bc6709 to your computer and use it in GitHub Desktop.
Save nicanor-romerovenier/532ce88551ceda9931a8be7d56bc6709 to your computer and use it in GitHub Desktop.
Programar Fácil - Tutorial de Python # 10
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import tkinter
from tkinter import messagebox
def accion_de_mi_boton():
messagebox.showinfo("Mi diálogo emergente", mi_entrada.get())
mi_ventana = tkinter.Tk()
mi_ventana.geometry("640x480")
mi_entrada = tkinter.Entry()
mi_entrada.pack()
mi_boton = tkinter.Button(text="Mi botón!", command=accion_de_mi_boton)
mi_boton.pack()
mi_ventana.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment