wxPython 没有正确地将回调绑定到事件

发布于 2024-10-03 16:23:42 字数 494 浏览 2 评论 0原文

这是一个大致最小的说明性示例:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

究竟谁懂我的在乎 2024-10-10 16:23:42

在 for 循环 name 将为“baz”之后,它的值将不会及时返回到将 menuclick 绑定到菜单事件时的时间。

您可以通过事件本身获取菜单项名称,如下所示:

def menuclick(e):
    print(menu.FindItemById(e.Id).Label)

After the for loop name will be "baz", it's value will not go back in time to when you bound the menuclick to the menu event.

You can get to the menu item name via the event itself like this:

def menuclick(e):
    print(menu.FindItemById(e.Id).Label)
源来凯始玺欢你 2024-10-10 16:23:42

我找到了这个解决方案,我不确定为什么它在内部定义版本不起作用的情况下起作用:

from functools import partial

def onclick(name,e):
    print(name)

for name in ['foo','bar','baz']:
    menuitem = menu.Append(-1,"&"+name,name)
    frame.Bind(wx.EVT_MENU, partial(onclick,name), menuitem)

I found this solution, by I'm not sure why this works where the inner-def version doesn't:

from functools import partial

def onclick(name,e):
    print(name)

for name in ['foo','bar','baz']:
    menuitem = menu.Append(-1,"&"+name,name)
    frame.Bind(wx.EVT_MENU, partial(onclick,name), menuitem)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文