我有以下代码:
self.sliderR.Bind(wx.EVT_SCROLL,self.OnSlide)
在函数OnSlide
中,我插入了代码pdb.set_trace()
来帮助我调试。
在pdb提示符中,如果我键入event.GetEventType()
,它会返回一个数字(10136(,但我不知道对应于哪个事件。
10136是指wx.EVT_SCROLL
还是另一个触发wx.EVT_SCROLL
事件的事件?如果后者是真的,我该如何找到具体的事件?
谢谢。
没有内置的方法。您需要构建一个事件字典。Robin Dunn在这里有一些代码可以帮助:http://osdir.com/ml/wxpython-users/2009-11/msg00138.html
或者你可以看看我的简单例子:
import wx
class MyForm(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, title="Tutorial")
self.eventDict = {}
for name in dir(wx):
if name.startswith('EVT_'):
evt = getattr(wx, name)
if isinstance(evt, wx.PyEventBinder):
self.eventDict[evt.typeId] = name
# Add a panel so it looks the correct on all platforms
panel = wx.Panel(self, wx.ID_ANY)
btn = wx.Button(panel, wx.ID_ANY, "Get POS")
btn.Bind(wx.EVT_BUTTON, self.onEvent)
panel.Bind(wx.EVT_LEFT_DCLICK, self.onEvent)
panel.Bind(wx.EVT_RIGHT_DOWN, self.onEvent)
def onEvent(self, event):
"""
Print out what event was fired
"""
evt_id = event.GetEventType()
print self.eventDict[evt_id]
# Run the program
if __name__ == "__main__":
app = wx.App(False)
frame = MyForm().Show()
app.MainLoop()