+
+ // should be in sync with ComboKind_XXX values
+ static const wxString kinds[] =
+ {
+ _T("default"),
+ _T("simple"),
+ _T("drop down"),
+ };
+
+ m_radioKind = new wxRadioBox(this, wxID_ANY, _T("Combobox &kind:"),
+ wxDefaultPosition, wxDefaultSize,
+ WXSIZEOF(kinds), kinds,
+ 1, wxRA_SPECIFY_COLS);
+