+ EVT_RADIOBOX(self, RBOX2, self.EvtRadioBox)
+ rb.SetToolTip(wxToolTip("This box has no label"))
+ sizer.Add(rb, 0, wxLEFT|wxRIGHT|wxBOTTOM, 20)
+
+ sizer.Add(wxStaticText(self, -1, "These are plain wxRadioButtons"),
+ 0, wxLEFT|wxRIGHT, 20)
+ sizer.Add(wxRadioButton(self, RBUT1, "wxRadioButton 1"),
+ 0, wxLEFT|wxRIGHT, 20)
+ sizer.Add(wxRadioButton(self, RBUT2, "wxRadioButton 2"),
+ 0, wxLEFT|wxRIGHT, 20)
+ EVT_RADIOBUTTON(self, RBUT1, self.EvtRadioButton)
+ EVT_RADIOBUTTON(self, RBUT2, self.EvtRadioButton)
+
+ self.SetSizer(sizer)