wxComboBox does not derive from wxChoice in wxGTK so it can't in

wxPython either.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12421 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2001-11-14 18:34:26 +00:00
parent 742fc581e4
commit c70fd24fa8
4 changed files with 516 additions and 19 deletions

View File

@@ -29,6 +29,7 @@ class TestComboBox(wxPanel):
EVT_SET_FOCUS(cb, self.OnSetFocus)
EVT_KILL_FOCUS(cb, self.OnKillFocus)
cb.Append("foo")
wxComboBox(self, 501, "default value", wxPoint(80, 80), wxSize(95, -1),
sampleList, wxCB_SIMPLE)