wxPython获取事件ID

发布于 2024-11-25 15:58:07 字数 207 浏览 0 评论 0原文

我有一些代码,它将菜单项绑定到一个方法:

def getEventID(self, event):
    print id # how do I get id?

EVT_MENU(self, 123,  self.getEventID)

所以基本上,我希望我的应用程序在按下具有该 ID 的菜单项时打印“123”。我该怎么做呢?

I have some code, which binds a menu item to a method:

def getEventID(self, event):
    print id # how do I get id?

EVT_MENU(self, 123,  self.getEventID)

So basicly, I want my app to print "123" when the menu item with that ID is pressed. How would I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

瞄了个咪的 2024-12-02 15:58:07

我相信您应该能够使用 event.GetId() 。您还可以使用event.GetEventObject()来获取触发该事件的小部件。

You should just be able to use event.GetId() I believe. You can also use event.GetEventObject() to get the widget that fired the event.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文