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