X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/493f1553fdfd276ed9944c5f1c070ee34be13b52..04ef50df3a0fa3c343800c554e609f98fc7575cc:/wxPython/demo/wxChoice.py diff --git a/wxPython/demo/wxChoice.py b/wxPython/demo/wxChoice.py index ceafc8be92..da6fa7b2a0 100644 --- a/wxPython/demo/wxChoice.py +++ b/wxPython/demo/wxChoice.py @@ -15,12 +15,15 @@ class TestChoice(wxPanel): wxPoint(15, 10)) wxStaticText(self, -1, "Select one:", wxPoint(15, 50), wxSize(75, 20)) - wxChoice(self, 40, (80, 50), (95, 125), + self.ch = wxChoice(self, 40, (80, 50), (95, 125), choices = sampleList) EVT_CHOICE(self, 40, self.EvtChoice) + def EvtChoice(self, event): self.log.WriteText('EvtChoice: %s\n' % event.GetString()) + self.ch.Append("A new item") + #---------------------------------------------------------------------------