2 from wxPython
.wx
import *
4 #---------------------------------------------------------------------------
6 class TestRadioButtons(wxPanel
):
7 def __init__(self
, parent
, log
):
9 wxPanel
.__init
__(self
, parent
, -1)
10 #self.SetBackgroundColour(wxBLUE)
12 sampleList
= ['zero', 'one', 'two', 'three', 'four', 'five',
13 'six', 'seven', 'eight']
15 rb
= wxRadioBox(self
, 30, "wxRadioBox", wxPoint(35, 30), wxDefaultSize
,
16 sampleList
, 3, wxRA_SPECIFY_COLS
)
17 EVT_RADIOBOX(self
, 30, self
.EvtRadioBox
)
18 #rb.SetBackgroundColour(wxBLUE)
19 rb
.SetToolTip(wxToolTip("This is a ToolTip!"))
21 wxRadioButton(self
, 32, "wxRadioButton", (235, 35))
22 wxRadioButton(self
, 33, "wxRadioButton", (235, 55))
24 rb
= wxRadioBox(self
, 35, "", wxPoint(35, 120), wxDefaultSize
,
25 sampleList
, 3, wxRA_SPECIFY_COLS | wxNO_BORDER
)
26 EVT_RADIOBOX(self
, 35, self
.EvtRadioBox
)
29 def EvtRadioBox(self
, event
):
30 self
.log
.WriteText('EvtRadioBox: %d\n' % event
.GetInt())
32 #---------------------------------------------------------------------------
34 def runTest(frame
, nb
, log
):
35 win
= TestRadioButtons(nb
, log
)
38 #---------------------------------------------------------------------------
51 A radio box item is used to select one of number of mutually exclusive choices. It is displayed as a vertical column or horizontal row of labelled buttons.