wxPython:如何在SearchCtrl上监听EVT_KEY_DOWN?
在我的应用程序中,我想要一个搜索框,可能类似于 wx.SearchCtrl 提供的搜索框,其中包含搜索按钮和取消按钮。我还想知道用户何时按下 Up 或 Down,以便我可以浏览搜索结果。当我用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决方法似乎是使用 EVT_KEY_UP,即
但是,这样按键是不可重复的(您必须释放按键才能触发事件)。我仍在寻找更好的方法。
A workaround seems to be using EVT_KEY_UP, i.e
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.
使用不同的事件,按照文档。
Use a different event, as per the docs.