You've already forked Curso-lenguaje-python
Add library exercises
This commit is contained in:
23
python-ofensivo/08_librerias/08_tkinter_08_messagebox.py
Normal file
23
python-ofensivo/08_librerias/08_tkinter_08_messagebox.py
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Librería tkinter - messagebox
|
||||
|
||||
"""
|
||||
|
||||
import tkinter as tk
|
||||
from tkinter import messagebox as mb
|
||||
|
||||
|
||||
def accion_boton():
|
||||
mb.showinfo("Información",
|
||||
"Este texto ha salido porque has pulsado el botón")
|
||||
|
||||
|
||||
root = tk.Tk()
|
||||
root.geometry("150x80")
|
||||
root.title("Button() Widget & messagebox")
|
||||
|
||||
boton = tk.Button(root, text="ClickMe", command=accion_boton)
|
||||
boton.pack(pady=10)
|
||||
|
||||
root.mainloop()
|
||||
Reference in New Issue
Block a user