]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/wxPIA_book/Chapter-07/radio_box.py
3 class RadioBoxFrame(wx
.Frame
):
5 wx
.Frame
.__init
__(self
, None, -1, 'Radio Box Example',
7 panel
= wx
.Panel(self
, -1)
8 sampleList
= ['zero', 'one', 'two', 'three', 'four', 'five',
9 'six', 'seven', 'eight']
10 wx
.RadioBox(panel
, -1, "A Radio Box", (10, 10), wx
.DefaultSize
,
11 sampleList
, 2, wx
.RA_SPECIFY_COLS
)
13 wx
.RadioBox(panel
, -1, "", (150, 10), wx
.DefaultSize
,
14 sampleList
, 3, wx
.RA_SPECIFY_COLS | wx
.NO_BORDER
)
16 if __name__
== '__main__':
17 app
= wx
.PySimpleApp()
18 RadioBoxFrame().Show()