wxPython 没有正确地将回调绑定到事件
这是一个大致最小的说明性示例:
import wx
app = wx.App(False)
frame = wx.Frame(None)
menuBar = wx.MenuBar()
menu = wx.Menu()
menuBar.Append(menu, "&Menu")
frame.SetMenuBar(menuBar)
for name in ['foo','bar','baz']:
menuitem = menu.Append(-1,"&"+name,name)
def menuclick(e):
print(name)
frame.Bind(wx.EVT_MENU, menuclick, menuitem)
frame.Show(True)
app.MainLoop()
问题是每个菜单项在单击时都会打印“baz”。难道 menuclick
函数不应该将适当的名称包装在其闭包中并保留原始名称吗?
Here's a roughly minimal demonstrative example:
import wx
app = wx.App(False)
frame = wx.Frame(None)
menuBar = wx.MenuBar()
menu = wx.Menu()
menuBar.Append(menu, "&Menu")
frame.SetMenuBar(menuBar)
for name in ['foo','bar','baz']:
menuitem = menu.Append(-1,"&"+name,name)
def menuclick(e):
print(name)
frame.Bind(wx.EVT_MENU, menuclick, menuitem)
frame.Show(True)
app.MainLoop()
The issue is that every menu item, when clicked, prints "baz". Shouldn't the menuclick
function wrap up the appropriate name in its closure and keep the original name around?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 for 循环
name
将为“baz”之后,它的值将不会及时返回到将menuclick
绑定到菜单事件时的时间。您可以通过事件本身获取菜单项名称,如下所示:
After the for loop
name
will be "baz", it's value will not go back in time to when you bound themenuclick
to the menu event.You can get to the menu item name via the event itself like this:
我找到了这个解决方案,我不确定为什么它在内部定义版本不起作用的情况下起作用:
I found this solution, by I'm not sure why this works where the inner-def version doesn't: