Article Outline
Python tkinter (gui) example 'TK Example4'
Functions in program:
def main():
TK Example4
Python tkinter example: TK Example4
from tkinter import *
"""A button - what can we do with it?
Well lets make it change the colour of the text label
and change the style of the button when it is pressed"""
class OnOffButton(Button):
def __init__(self,master=None,text=None):
Button.__init__(self,master,text=text)
self['command'] = self._onButtonClick
def _onButtonClick(self):
"""This method is called when the start button is pressed.
If the button colour is the default, set it to red and sink the button
Otherwise set it to the default again and raise the button"""
if self['fg'] == "SystemButtonText":
self['fg'] = "red"
self['relief'] = "sunken"
else:
self['fg'] = "SystemButtonText"
self['relief'] = "raised"
class App(Frame):
"""Our Application. We inherit all the properties
and methods of a Tkinter Frame"""
def __init__(self,master=None):
Frame.__init__(self,master)
self.lblHello = Label(self,text="Hello World")
self.lblHello['fg'] = "red"
self.lblHello.grid()
self.btnStart = OnOffButton(self,text="Click Me")
self.btnStart.grid()
self.btn2 = OnOffButton(self,text="Enable")
self.btn2.grid()
def main():
root = Tk()
app = App(master=root)
app.grid()
root.mainloop()
"""This is the code that is executed by python when we run this .py file"""
if __name__ == '__main__':
main()
Useful links
- Learn Tkinter: https://pythonbasics.org/tkinter/
- Wikipedia tkinter: https://en.wikipedia.org/wiki/Tkinter