Python GUI - Tkinter Final
Python GUI - Tkinter Final
Python offers multiple options for developing GUI (Graphical User Interface). Out of all the GUI
methods, tkinter is a standard Python interface to the Tk GUI toolkit shipped with Python.
Python with tkinter outputs the fastest and easiest way to create the GUI applications. Creating a
GUI using tkinter is an easy task.
To create a tkinter:
Importing tkinter is same as importing any other module in the python code. Note that the name
of the module in Python 2.x is ‘Tkinter’ and in Python 3.x is ‘tkinter’.
import tkinter
There are two main methods used you the user need to remember while creating the Python
application with GUI.
2. mainloop(): There is a method known by the name mainloop() is used when you are
ready for the application to run. mainloop() is an infinite loop used to run the application,
wait for an event to occur and process the event till the window is not closed.
m.mainloop()
import tkinter
m = tkinter.Tk() #used to create main window
'''
widgets are added here
'''
m.mainloop() # is an infinite loop used to run the application
tkinter also offers access to the geometric configuration of the widgets which can organize the
widgets in the parent windows. There are mainly three geometry manager classes class.
1. pack() method:It organizes the widgets in blocks before placing in the parent widget.
2. grid() method:It organizes the widgets in grids (table-like structure) before placing in the
parent widget.
3. place() method:It organizes the widgets by placing them on specific positions directed
by the programmer.
There are a number of widgets which you can put in your tkinter application. Some of the major
widgets are explained below:
w=Button(master, option=value)
o activebackground: to set the background color when button is under the cursor.
o activeforeground: to set the foreground color when button is under the cursor.
o bg: to set the normal background color.
o command: to call a function.
o font: to set the font on the button label.
o image: to set the image on the button.
o width: to set the width of the button.
o height: to set the height of the button.
import tkinter as tk
r = tk.Tk()#used to create main window
r.title('Counting Seconds')
button = tk.Button(r, text='Stop', width=25, command=r.destroy)
button.pack()# It organizes the widgets in blocks before placing in the parent widget
r.mainloop()
2. Canvas: It is used to draw pictures and other complex layout like graphics, text and
widgets.
The general syntax is:
w = Canvas(master, option=value)
master is the parameter used to represent the parent window.
There are number of options which are used to change the format of the widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
Output:
w = CheckButton(master, option=value)
There are number of options which are used to change the format of this widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
Output:
4. Entry(for TEXT BOX):It is used to input the single line text entry from the user.. For
multi-line text input, Text widget is used.
The general syntax is:
w=Entry(master, option=value)
Output:
5. Frame: It acts as a container to hold the widgets. It is used for grouping and organizing
the widgets. The general syntax is:
w = Frame(master, option=value)
master is the parameter used to represent the parent window.
There are number of options which are used to change the format of the widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
o highlightcolor: To set the color of the focus highlight when widget has to be
focused.
o bd: to set the border width in pixels.
o bg: to set the normal background color.
o cursor: to set the cursor used.
o width: to set the width of the widget.
o height: to set the height of the widget.
* root = Tk()
frame =
Frame(root)
frame.pack()
bottomframe = Frame(root)
bottomframe.pack( side = BOTTOM )
redbutton = Button(frame, text = 'Red', fg ='red')
redbutton.pack( side = LEFT)
greenbutton = Button(frame, text = 'Brown', fg='brown')
greenbutton.pack( side = LEFT )
bluebutton = Button(frame, text ='Blue', fg ='blue')
bluebutton.pack( side = LEFT )
blackbutton = Button(bottomframe, text ='Black', fg ='black')
blackbutton.pack( side = BOTTOM)
root.mainloop()
Output:
6. Label: It refers to the display box where you can put any text or image which can be
updated any time as per the code.
The general syntax is:
w=Label(master, option=value)
master is the parameter used to represent the parent window.
There are number of options which are used to change the format of the widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
Output:
7. Listbox: It offers a list to the user from which the user can accept any number of options.
The general syntax is:
w = Listbox(master, option=value)
master is the parameter used to represent the parent window.
There are number of options which are used to change the format of the widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
o highlightcolor: To set the color of the focus highlight when widget has to be
focused.
o bg: to set he normal background color.
o bd: to set the border width in pixels.
o font: to set the font on the button label.
o image: to set the image on the widget.
o width: to set the width of the widget.
o height: to set the height of the widget.
top = Tk()
Lb = Listbox(top)
Lb.insert(1, 'Python')
Lb.insert(2, 'Java')
Lb.insert(3, 'C++')
Lb.insert(4, 'Any other')
Lb.pack()
top.mainloop()
Output:
8. MenuButton: It is a part of top-down menu which stays on the window all the time.
Every menubutton has its own functionality. The general syntax is:
w = MenuButton(master, option=value)
master is the parameter used to represent the parent window.
There are number of options which are used to change the format of the widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
* top = Tk()
mb = Menubutton ( top, text = "GfG")
mb.grid()
mb.menu = Menu ( mb, tearoff = 0 )
mb["menu"] = mb.menu
cVar = IntVar()
aVar = IntVar()
mb.menu.add_checkbutton ( label ='Contact', variable = cVar )
mb.menu.add_checkbutton ( label = 'About', variable = aVar )
mb.pack()
top.mainloop()
Output:
w = Menu(master, option=value)
master is the parameter used to represent the parent window.
There are number of options which are used to change the format of this widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
o title: To set the title of the widget.
o activebackground: to set the background color when widget is under the cursor.
o activeforeground: to set the foreground color when widget is under the cursor.
o bg: to set he normal background color.
o command: to call a function.
o font: to set the font on the button label.
o image: to set the image on the widget.
* root = Tk()
menu = Menu(root)
root.config(menu=menu)
filemenu = Menu(menu)
menu.add_cascade(label='File', menu=filemenu)
filemenu.add_command(label='New')
filemenu.add_command(label='Open...')
filemenu.add_separator()
filemenu.add_command(label='Exit', command=root.quit)
helpmenu = Menu(menu)
menu.add_cascade(label='Help', menu=helpmenu)
helpmenu.add_command(label='About')
mainloop()
Output:
10. Message: It refers to the multi-line and non-editable text. It works same as that of Label.
The general syntax is:
w = Message(master, option=value)
master is the parameter used to represent the parent window.
There are number of options which are used to change the format of the widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
Output:
11. RadioButton: It is used to offer multi-choice option to the user. It offers several options
to the user and the user has to choose one option.
The general syntax is:
w = RadioButton(master, option=value)
There are number of options which are used to change the format of this widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
o activebackground: to set the background color when widget is under the cursor.
o activeforeground: to set the foreground color when widget is under the cursor.
o bg: to set he normal background color.
o command: to call a function.
o font: to set the font on the button label.
o image: to set the image on the widget.
o width: to set the width of the label in characters.
o height: to set the height of the label in characters.
from tkinter import
* root = Tk()
v = IntVar()
Radiobutton(root, text='GfG', variable=v, value=1).pack(anchor=W)
Radiobutton(root, text='MIT', variable=v, value=2).pack(anchor=W)
mainloop()
Output:
12. Scale: It is used to provide a graphical slider that allows to select any value from that
scale. The general syntax is:
w = Scale(master, option=value)
master is the parameter used to represent the parent window.
There are number of options which are used to change the format of the widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
o cursor: To change the cursor pattern when the mouse is over the widget.
o activebackground: To set the background of the widget when mouse is over the
widget.
o bg: to set he normal background color.
o orient: Set it to HORIZONTAL or VERTICAL according to the requirement.
o from_: To set the value of one end of the scale range.
o to: To set the value of the other end of the scale range.
o image: to set the image on the widget.
o width: to set the width of the widget.
w = Scrollbar(master, option=value)
master is the parameter used to represent the parent window.
There are number of options which are used to change the format of the widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
w =Text(master, option=value)
There are number of options which are used to change the format of the text. Number of
options can be passed as parameters separated by commas. Some of them are listed
below.
o highlightcolor: To set the color of the focus highlight when widget has to be
focused.
o insertbackground: To set the background of the widget.
o bg: to set he normal background color.
o font: to set the font on the button label.
o image: to set the image on the widget.
o width: to set the width of the widget.
o height: to set the height of the widget.
Output:
15. TopLevel: This widget is directly controlled by the window manager. It don’t need any
parent window to work on.The general syntax is:
w = TopLevel(master, option=value)
There are number of options which are used to change the format of the widget. Number
of options can be passed as parameters separated by commas. Some of them are listed
below.
Output: