Use RadioBox : RadioBox : WxPython PYTHON TUTORIALS


PYTHON TUTORIALS » WxPython » RadioBox »

 

Use RadioBox


Use RadioBox
import wx

class RadioBoxFrame(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, None, -1'Radio Box Example', size=(350200))
        panel = wx.Panel(self, -1)
        sampleList = ['zero', 'one', 'two', 'three', 'four', 'five','six', 'seven', 'eight']
        wx.RadioBox(panel, -1"A Radio Box"(1010), wx.DefaultSize,sampleList, 2, wx.RA_SPECIFY_COLS)
        wx.RadioBox(panel, -1""(15010), wx.DefaultSize,sampleList, 3, wx.RA_SPECIFY_COLS | wx.NO_BORDER)

app = wx.PySimpleApp()
RadioBoxFrame().Show()
app.MainLoop()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo WxPython
» RadioBox