Tkinter Radiobutton Tutorial | Python GUI Tutorial

Tkinter Radiobutton Tutorial

The Radiobutton name comes from the radio button, which could be used to select a specific channel in the radio era. The most important feature of the options button is that you can select this option with a single mouse click, while only one option can be selected at a time. For example, when filling out a degree, you will see a series of options, such as high school, college, master’s, and doctorate, and only one item can be checked at this time. The most common way to design option buttons is to have them as text. Like labels we can also design option buttons with images.

Programming can be designed so that option buttons are tied to functions (or methods) that automatically execute the associated function or method when the appropriate option button is selected. Alternatively, the program may be designed to have multiple sets of option buttons, in which case it can be designed so that a set of option buttons has an associated variable with which to bind the set of option buttons.

In this case, the Radiobutton() method can be used to create the above series of option buttons, with the following syntax format.

Radiobutton(master, options, ...)

The first parameter of the Radiobutton() method is the parent object, indicating which parent object this option button will be built into.

The following are other commonly used options parameters within the Radiobutton() method.

(1) activebackground: the background color when the mouse cursor is on the option button.

(2) activeforeground: the foreground color when the mouse cursor is on the option button.

(3) anchor: control the position of the option button if the space is larger than needed, default is CENTER.

(4) bg: the background color of the label background or indicator.

(5) bitmap: bitmap image object.

(6) borderwidth or bd: the border width is two pixels by default.

(7) command: When the user changes the options, this function will be automatically executed.

(8) cursor: the cursor shape when the mouse cursor is on the option button.

(9) fg: text foreground color.

(10) font: font shape.

(11) height: how many lines of text on the option button, default is 1 line.

(12) highlightbackground: the background color when the option button gets focus.

(13) highlightcolor: the color of the option button when it gets the focus.

(14) image: image object, you can use this parameter if you want to create an option button with image.

(15) indicatoron: when this value is 0, the box option button can be created.

(16) justify: when containing multiple lines of text, the alignment of the last line of text.

(17) padx: default is 1, you can set the interval between the option button and the text.

(18) pady: default is 1, you can set the spacing between the top and bottom of the option buttons.

(19) selectcolor: the color of the option button when it is selected.

(20) selectimage: if the image option button is set, you can thus set a different image when the option button is selected.

(21) state: the default is state=NORMAL, if DISABLE is set, the option button will be displayed in gray scale to indicate that it is temporarily unavailable.

(22) text: the text next to the option button.

(23) textvariable: display the option button text as a variable.

(24) underline: you can set the number of text with underline, starting from 0. The default is -1, which means no underline.

(25) value: the value of the option button, you can distinguish the selected option button.

(26) variable: set or get the currently selected radio button, its value type is usually IntVar or StringVar.

(27) width: the text of the option button is a few characters wide, and will adjust itself to the actual width when omitted.

(28) wraplength: limit the number of text per line, the default is 0, which means only "\n" will change the line.

The way to bind the whole set of option buttons is as follows.

var IntVar
rb1 = Radiobutton(root, ..., variable=var, value=x1, ...)
rb2 = Radiobutton(root, ..., variable=var, value=x2, ...)
...
rbn = Radiobutton(root, ..., variable=var, value=x3, ...)

In the future, if you want to get the option selected by this group of option buttons, you can use the get( ) method, which will pass back the value of the parameter value of the selected option. The method set( ) can set the initial default value option.

Tkinter Radiobutton Tutorial Example#1

This is a simple application of the option button, the default option is "boy" when the program is first executed, then the top of the window shows not yet selected, then you can choose "boy" or "girl", after the selection is complete, you can display "you are a boy" or "you are a girl".

from tkinter import *

def printSelection():
    num = var.get()
    if num == 1:
        label.config(text="You are a boy")
    else:
        label.config(text="You are a girl")

root = Tk()
root.title("apidemos.com")

var = IntVar()
var.set(1)

label = Label(root,text="This is a preset, not yet selected",bg="lightyellow",width=30)
label.pack()

rbman = Radiobutton(root,text="Boy",                  # Boy's option button
                    variable=var,value=1,             # value is used to distinguish the selected option button 
                    command=printSelection)           # Girl's option buttion
rbman.pack()
rbwoman = Radiobutton(root,text="Girl",
                    variable=var,value=2,
                    command=printSelection)
rbwoman.pack()

root.mainloop()

Output:

image-20220823130202777

Line 13 above is setting the var variable to be an IntVar( ) object, which is also an integer type.

Line 14 is to set the default option to be 1, which in this case is equivalent to the default being boys.

Lines 16 and 17 set the label information.

Lines 19 to 22 are for creating the "Boys" option button.

Lines 23 to 26 are for creating the "Girl" option button. When a new radio button is created, the function in lines 3 to 8 will be executed. This function will get the value of the current option button from var.get( ), and then use this value to determine if the selected one is a boy or a girl, and finally use the config( ) method to set the boy or girl to the text of the label object label, so you can see the selected result.

The above procedure is to let the reader understand get ( ) and set ( ) method to obtain and set the var value is the value of the parameter value, after familiar with the operation of the option button, this field can be handled with a string, usually set the text content and value content is the same, this time in the processing callback function (in this case is printSelection) When dealing with the callback function (in this case, printSelection), it is clearer and easier to understand, and the whole program can be more concise.

Tkinter Radiobutton Tutorial Example#2

Using a string to set the value parameter value within the Radiobutton method, redesign ch7_1.py. The reader will notice that the printSelection( ) function replaces the original lines 4 to 8 with only line 4.

from tkinter import *
def printSelection():
    label.config(text="You are "+var.get())

root = Tk()
root.title("apidemos.com")    # Set window title

var = StringVar()         # Variables bound to option buttons
var.set("Boy")             # Default option is male
# var.set("Birth")
# var.set(0)           # You can set no default options initially 
label = Label(root,text="This is a preset, not yet selected",bg="lightyellow",width=30)
label.pack()

rbman = Radiobutton(root,text="Boy-Tom",                  # Boy's option button
                    variable=var,value="Boy",             # value is used to distinguish the selected option button 
                    command=printSelection)               # Girl's option buttion
rbman.pack()
rbwoman = Radiobutton(root,text="Girl-Lucy",
                    variable=var,value="Girl",
                    command=printSelection)
rbwoman.pack()

root.mainloop()

Output:

image-20220823130407045

Like(1)
Python Tkinter Tutorial
Python Tkinter tutorialTkinter Create WindowTkinter Window propertiesTkinter Window positionTkinter Widget IntroductionTkinter Widget Common PropertiesTkinter Widget Common MethodTkinter Widget Foreground ColorTkinter Widget DimensionsTkinter Widget AnchorTkinter Widget FontTkinter Widget Bitmaps PropertyTkinter Widget compound ParameterTkinter Widget reliefTkinter PhotoImageTkinter Widget config() MethodTkinter Widget Cursors PropertyTkinter Widget keys() MethodTkinter SeparatorTkinter Variable Basic conceptsTkinter Variable get() and set()Tkinger variable trace() using w modeTkinter variable trace() using r modeTkinter trace() method callback ParametersTkinter variables Example - CalculatorTkinter Widget command parameter
Tkinter Label
Python Tkinter LabelTkinter Label wraplengthTkinter Label justify ParameterTkinter Label Padding
Tkinter Widget Layout Manager
Tkinter Widget Layout ManagerTkinter pack side parameterTkinter pack padx/pady parameterTkinter pack ipadx/ipady parameterTkinter pack anchor parameterTkinter pack fill parameterTkinter pack expand parameterTkinter pack methodTkinter grid row and columnTkinter grid columnspan parameterTkinter grid rowspan parameterTkinter grid padx and pady parameterTkinter grid sticky parameterTkinter grid method exampleTkinter grid rowconfigure() and columnconfigure()Tkinter place x/y parameterTkinter place width/height parameterTkinter place relx/rely and relwidth/relheight parameter
Tkinter Button
Tkinter Button TutorialTkinter Button Lambda ExpressionTkinter Button with an imageTkinter Button Implement a simple calculatorTkinter Cursor shape on Button
Tkinter Entry
Tkinter Entry TutorialTkinter Entry Show ParameterTkinter Entry get() MethodTkinter Entry insert() MethodTkinter Entry delete() MethodTkinter eval calculates mathematical expressions
Tkinter Radiobutton
Tkinter Radiobutton TutorialTkinter Radiobutton with DictionaryTkinter Box RadiobuttonTkinter Radiobutton with Image
Tkinter Checkbutton
Tkinter Checkbutton TutorialTkinter Checkbutton Example
Tkinter Frame
Tkinter Frame TutorialTkinter Create widget inside FrameTkinter Frame relief propertiesTkinter Create Checkbuttonin FrameTkinter Frame relief attribute additional supportTkinter LabelFrame TutorialTkinter add Checkbutton in LabelFrameTinker Toplevel TutorialTkinter Simulation dialog using Toplevel window
Tkinter Scale
Tkinter Scale BasicTkinter get and set the Scale value of ScaleTkinter Scale Set Window Background ColorTkinter colorchooser askcolor() MethodTkinter Frame and Scale integrated Example
Tkinter Spinbox
Tkinter Spinbox TutorialTkinter Spinbox get methodTkinter stores Spinbox's numerical data in sequenceTkinter Spinbox uses non-numeric data
Tkinter Message
Tkinter Message TutorialTkinter Message Handling text parameters with string variablesTkinter Messagebox Tutorial
Tkinter Event
Tkinter Event BindTkinter mouse binding basic usageTkinter keyboard binding basic usageTkinter Keyboard and mouse event binding pitfallsTkinter Event unbindTkinter Binding multiple event handlers to single eventTkinter Protocols
Tkinter ListBox
Tkinter ListBox TutorialTkinter ListBox insert() MethodTkinter Listbox Basic OperationTkinter ListBox Item CountTkinter ListBox selects specific index itemsTkinter ListBox Delete specific index itemsTkinter ListBox Pass back the specified index itemTkinter ListBox Return the index of the selected itemTkinter ListBox check if the specified item is selectedTkinter ListBox Virtual binding applied to radio selectionTkinter ListBox Virtual binding applied to multiple choicesTkinter ListBox Add and Delete ItemTkinter Listbox Order ItemsTkinter Drag and drop the items in the ListboxTkinter Scrollbar in Listbox
Tkinter OptionMenu
Tkinter OptionMenu TutorialTkinter OptionMenu Create items with tupleTkinter OptionMenu Create default optionTkinter OptionMenu Get option content
Tkinter Combobox
Tkinter Combobox TutorialTikinter Combobox Set default optionTkinter Combobox Get current optionTkinter Bind Combobox
Tkinter PanedWindow
Tkinter PanedWindow TutorialTkinter PanedWindow Insert Child ObjectTkinter PanedWindow Create LabelFrame as child objectTkinter PanedWindow weight parameterTkinter Insert different controls in PanedWindow
Tkinter Notebook
Tkinter Notebook TutorialTkinter Notebook Bind tabs to child control content
Tkinter Progressbar
Tkinter Progressbar TutorialTkinter Progressbar AnimationTkinter Progressbar start/step/stop MethodTkinter Progressbar Indeterminate Mode
Tkinter Menu
Tkinter Menu TutorialTkinter Menu tearoff ParameterTkinter Menu Add separator between listsTkinter Menu Create multiple menu applicationsTkinter Menu Alt shortcutTkinter Menu Ctrl+ShortcutsTkinter Menu Create submenuTkinter Menu Create pop-up menuTkinter Menu add_checkbuttonTkinter Menu Create Toolbar
Tkinter Text
Tkinter Text TutorialTkinter Text Insert textTkinter Text Add Scrollbar designTkinter Text family ParameterTkinter Text weight ParameterTkinter Text size ParameterTkinter Text Select textTkinter Text’s indexTkinter Text Create MarksTkinter Text TagsTkinter Text Cut/Copy/Paste FunctionTkinter Text Undo and RedoTkinter Text Find TextTkinter Text Spell CheckTkinter Store Text Control ContentTkinter Text New DocumentTkinter Open DocumentTkinter Default ScrolledText control with scrollbarsTkinter Text Insert Image
Tkinter Treeview
Tkinter Treeview TutorialTkinter Format content of Treeview fieldsTkinter Treeview Create row content in different colorsTkinter Create a hierarchical TreeviewTkinter Treeview Insert ImageTkinter Treeview Selection Option Occurrence and Event TriggerTkinter Treeview Delete ItemTkinter Treeview Insert ItemTkinter Treeview Double-click an itemTkinter Treeview Bind scrollbarTkinter Treeview Sorting
Tkinter Canvas
Tkinter Canvas Draw linesTkinter Canvas Draw RectangleTkinter Canvas Drawing arcsTkinter Canvas Drawing circles or ellipsesTkinter Canvas Draw polygonTkinter Canvas Output TextTkinter Canvas Change the background colorTkinter Canvas Insert ImageTkinter Canvas Mouse dragging to draw linesTkinter Canvas Basic AnimationTkinter Canvas Design for multiple ball movementTkinter Canvas Applying random numbers to the movement of multiple spheresTkinter Canvas Message BindingsTkinter Canvas Design the ball to move downTkinter Canvas Designed to let the ball bounce up and downTkinter Canvas Design so that the ball bounces on all sides of the canvasTkinter Canvas Build racketTkinter Canvas Design racket movementTkinter Canvas Handling of racket and ball collisionsTkinter Canvas Implementation of bouncing ball design game
Tkinter Examples
A Simple News App with Tkinter and NewsapiAdding coloured text to selected text in TkinterCall the same function when clicking a Button and pressing Enter in TkinterChanging the Background Color of a Tkinter Window using Colorchooser ModuleChanging Tkinter Label Text Dynamically using Label.configure()Combobox Widget in Python TkinterCopy from clipboard using Python and TkinterCreate a GUI to Check Domain Availability using TkinterCreating a GUI to Get Domain Information using TkinterCreating a LabelFrame inside a Tkinter CanvasCreating an Automatically Maximized Tkinter WindowDisplay the Host Name and IP Address on a Tkinter WindowEmbedding an Image in a Tkinter Canvas Widget using PILGet the value from a Tkinter scale and put it into a LabelGetting the Cursor Position in Tkinter Entry WidgetHow can I determine the position of a Toplevel in Tkinter?How do I open a website in a Tkinter window?How do I position the buttons on a Tkinter window?How to Add a Column to a Tkinter TreeView Widget?How to Add PDF in Tkinter GUI Python?How to attach a vertical scrollbar to a Treeview using Tkinter?How to Bind a Tkinter Event to the Left Mouse Button Being Held Down?How to Bind all the Number Keys in TkinterHow to Bring a Dialog Box to Appear at the Front in a Tkinter Module of Python?How to call a function using the OptionMenu widget in Tkinter?How to Center a Label in a Frame of Fixed Size in Tkinter?How to Change the Background Color of a Tkinter Canvas Dynamically?How to Clear the Text Field Part of ttk.Combobox in Tkinter?How to close only the TopLevel window in Python Tkinter?How to create an impressive GUI in Python using Tkinter?How to Directly Modify a Specific Item in a TKinter ListboxHow to disable an Entry widget in Tkinter?How to disable multiselection on Treeview in tkinter?How to Display a Tkinter Application in Fullscreen on macOS?How to display multiple labels in one line with Python Tkinter?How to Draw a Dashed Line on a Tkinter Canvas?How to draw a line following mouse coordinates with tkinter?How to Draw an Arc on a Tkinter Canvas?How to exit from Python using a Tkinter Button?How to Explicitly Resize Frames in Tkinter?How to Get a New API Response in a Tkinter Textbox?How to get a string from a tkinter filedialog in Python 3?How to get an Entry box within a Messagebox in Tkinter?How to get rid of widget border in Tkinter?How to get the index of selected option in Tkinter Combobox?How to Highlight a Tkinter Button in macOS?How to insert a temporary text in a tkinter Entry widget?How to make a new folder using askdirectory dialog in Tkinter?How to Make Specific Text Non-Removable in Tkinter?How to Place an Image into a Frame in Tkinter?How to Place Objects in the Middle of a Frame using TkinterHow to place the text at the center of an Entry box in Tkinter?How to put a border around a Frame in Python Tkinter?How to Resize an Entry Box by Height in Tkinter?How to run an infinite loop in Tkinter?How to save the contents of a Textbox in Tkinter?How to set a certain number of rows and columns of a Tkinter grid?How to set a default string value on a Tkinter Spinbox?How to Set Padding of All Widgets Inside a Window or Frame in Tkinter?How to Show Multiple Canvases at the Same Time in TkinterHow to Show the Status of CAPS Lock Key in Tkinter?How to Specify the File Path in a Tkinter Filedialog?How to stop copy, paste, and backspace in text widget in tkinter?How to stop Tkinter Message widget from resizing?How to take input in a text widget and display the text in tkinter?How to Temporarily Remove a Tkinter Widget without Using just .placeHow to Update a Button Widget in Tkinter?How to Use a StringVar Object in an Entry Widget in Tkinter?Printing a List to a Tkinter Text WidgetPython Tkinter How to display a table editor in a text widget?Python Tkinter : How to export data from Entry Fields to a CSV file?Python Tkinter ŌĆō How to Position a topLevel() Widget Relative to the Root Window?Tkinter ŌĆō How to Create Colored Lines Based on Length?Tkinter-How to get the current date to display in a tkinter window?Tkinter - How to Put an Outline on a Canvas Text