wxPython:如何在SearchCtrl上监听EVT_KEY_DOWN?

发布于 2024-10-02 11:02:31 字数 528 浏览 1 评论 0原文

在我的应用程序中,我想要一个搜索框,可能类似于 wx.SearchCtrl 提供的搜索框,其中包含搜索按钮和取消按钮。我还想知道用户何时按下 UpDown,以便我可以浏览搜索结果。当我用 wx.TextCtrl 制作演示时,我可以像这样绑定事件

self.textbox = wx.TextCtrl(self)
self.textbox.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown, self.textbox)

但是一旦我将 textbox 更改为 wx.SearchCtrl 我就不能赶上事件了。我可以使绑定与 wx.SearchCtrl 一起使用吗?还是必须实现我的 textbox 以使其看起来像一个?

如果这很重要的话,我正在 Ubuntu (Gnome) 上进行开发,并且该应用程序应该可以在 Linux 和 Windows 上正常运行。

In my application I want a search box, probably like the one provided by wx.SearchCtrl, with the search button and the cancel button included. I also want to know when the user presses Up or Down, so that I can browse through the search results. When I make a demo with wx.TextCtrl I can bind the event like this

self.textbox = wx.TextCtrl(self)
self.textbox.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown, self.textbox)

But as soon as I change textbox to wx.SearchCtrl I cannot catch the event anymore. Can I make the binding work with wx.SearchCtrl or do I have to implement my textbox so that it looks like one?

If that matters, I'm developing on Ubuntu (Gnome) and the application should work well on both Linux and Windows.

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

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

发布评论

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

评论(2

柳若烟 2024-10-09 11:02:31

解决方法似乎是使用 EVT_KEY_UP,即

self.textbox.Bind(wx.EVT_KEY_UP, self.OnKeyUp, self.textbox)

但是,这样按键是不可重复的(您必须释放按键才能触发事件)。我仍在寻找更好的方法。

A workaround seems to be using EVT_KEY_UP, i.e

self.textbox.Bind(wx.EVT_KEY_UP, self.OnKeyUp, self.textbox)

However, this way the key press is not repeatable (you have to release the key in order for the event to be fired). I'm still looking for better ways.

扬花落满肩 2024-10-09 11:02:31

使用不同的事件,按照文档

self.textbox = wx.SearchCtrl(self, style=wx.TE_PROCESS_ENTER)
self.Bind(wx.EVT_TEXT, self.OnKeyDown, self.textbox)

Use a different event, as per the docs.

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