+bool wxRadioBox::Show(unsigned int item, bool show)
+{
+ wxRadioButton *btn = GetRadioButton(item);
+ if(btn)
+ {
+ bool ret = btn->Show(show);
+ RefreshRect(btn->GetRect());
+ return ret;
+ }
+ return false;
+}
+
+wxString wxRadioBox::GetLabel()
+{
+ return m_label;
+}
+
+void wxRadioBox::SetLabel(const wxString& label)