Skip to content
Related Articles
Open in App
Not now

Related Articles

Create RadioButton in frame using wxPython

Improve Article
Save Article
  • Last Updated : 01 Aug, 2020
Improve Article
Save Article

In this article we are going to learn about Radio Button in wxPython. A radio button item is a button which usually denotes one of several mutually exclusive options.
It has a text label next to a (usually) round button.
You can create a group of mutually-exclusive radio buttons by specifying RB_GROUP for the first in the group. The group ends when another radio button group is created, or there are no more radio buttons.

Syntax:
wx.RadioButton.RadioButton(parent, id = ID_ANY, label = “”, pos = DefaultPosition,
size = DefaultSize, style = 0, validator = DefaultValidator,
name = RadioButtonNameStr)

Parameters:

ParameterInput TypeDescription
parentwx.WindowParent window. Should not be None.
idwx.WindowIDControl identifier. A value of -1 denotes a default value.
labelstringText Label.
poswx.PointWindow position.
sizewx.WindowWindow size.
stylelongWindow style.
validatorwx.ValidatorWindow validator.
namestringWindow name.

Code Example:




# importing the module
import wx
  
# definition of the Example class
class Example(wx.Frame):
  
    # instantiating the class     
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs)
   
        self.InitUI()
  
    # method for creation of user interface
    def InitUI(self):
   
        # create parent panel for radio buttons
        self.pnl = wx.Panel(self)
   
        # create radio button using RadioButton() constructor
        self.rb = wx.RadioButton(self.pnl, id = 1, label ="Radio", pos =(20, 20))
   
# definition of the main function
def main():
  
    # creating an App object
    app = wx.App()
  
    # creating an Example object
    ex = Example(None)
  
    # showing the Example object
    ex.Show()
  
    # running the App object
    app.MainLoop()
   
# driver code
if __name__ == '__main__':
    main()

Output Window:


My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!