Open In App

wxPython - Create Radio Button using Create() function

Last Updated : 15 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

Create() function is used for the two-step construction of Radio Button in wxPython. Create() function takes different attributes of radio button as an argument

Syntax:  wx.RadioButton.Create(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.

Example: 

Python3
# importing wx library
import wx

APP_EXIT = 1

# create an Example class
class Example(wx.Frame):
    # constructor
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs)

        # method calling
        self.InitUI()
        
    # method for user interface creation
    def InitUI(self):

        # create parent panel in frame for radio button
        self.pnl = wx.Panel(self)

        # initialize radio button
        self.rb = wx.RadioButton()

        # create radio button with two step creation
        self.rb.Create(self.pnl, id = 1,
                       label = "Radio",
                       pos = (20,20))

# main function
def main():
  
  # create an App object
  app = wx.App()
  # create an Example object
  ex = Example(None)
  
  ex.Show()
  
  # running an app
  app.MainLoop()

# Driver code
if __name__ == '__main__':
  
  # main function call
  main()

Output: 

Radio button in wxpython

Practice Tags :

Similar Reads

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy