Minor demo tweaks
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37693 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -47,12 +47,11 @@ class TestComboBox(wx.Panel):
|
||||
cb.Append(item, item.upper())
|
||||
|
||||
self.Bind(wx.EVT_COMBOBOX, self.EvtComboBox, cb)
|
||||
self.Bind(wx.EVT_COMBOBOX, self.EvtText, cb)
|
||||
|
||||
# When the user selects something, we go here.
|
||||
def EvtComboBox(self, evt):
|
||||
cb = evt.GetEventObject()
|
||||
data = cb.GetClientData(cb.GetSelection())
|
||||
data = cb.GetClientData(evt.GetSelection())
|
||||
self.log.WriteText('EvtComboBox: %s\nClientData: %s\n' % (evt.GetString(), data))
|
||||
|
||||
if evt.GetString() == 'one':
|
||||
|
Reference in New Issue
Block a user