GUI Programming With Python - Buttons in Tkinter
GUI Programming With Python - Buttons in Tkinter
TKINTER
TKINTER BUTTONS
The following script defines two buttons: one to quit the application and another one for the action, i.e.
printing the text "Tkinter is easy to use!" on the terminal.
root = Tk()
app = App(root)
root.mainloop()
The following script shows an example, where a label is dynamically incremented by 1 until a stop button is
pressed:
http://www.python-course.eu/tkinter_buttons.php 1/2
10/7/2014 GUI Programming with Python: Buttons in Tkinter
import Tkinter as tk
counter = 0
def counter_label(label):
counter = 0
def count():
global counter
counter += 1
label.config(text=str(counter))
label.after(1000, count)
count()
root = tk.Tk()
root.title("Counting Seconds")
label = tk.Label(root, fg="dark green")
label.pack()
counter_label(label)
button = tk.Button(root, text='Stop', width=25, command=root.destroy)
button.pack()
root.mainloop()
© 2011 - 2014 Bernd Klein, Bodenseo; Design by Denise Mitchinson adapted for python-course.eu by Bernd Klein
http://www.python-course.eu/tkinter_buttons.php 2/2