gpt4 book ai didi

python - 在 wxPython 中获取事件名称而不是整数 ID

转载 作者:太空宇宙 更新时间:2023-11-03 15:26:11 26 4
gpt4 key购买 nike

我有以下代码:

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()

关于python - 在 wxPython 中获取事件名称而不是整数 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6553570/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com