wxPython 的 SuggestBox?
是否有像 SuggestBox 这样的 wxPython 小部件谷歌网络工具包? 它基本上是一个神奇的文本框,可以调用一些代码来提出与用户迄今为止输入的内容相关的建议。 就像Google网页上的搜索框一样。
如果这样的小部件还没有出现,我希望能提供一个关于如何使用现有小部件实现它的草图。
Is there a widget for wxPython like the SuggestBox in Google Web Toolkit? It is basically a magic text box that can invoke some code to come up with suggestions relevant to whatever the user has entered so far. Like the search box on Google's web page.
If such a widget isn't already floating out there, I'd appreciate a sketch of how I might implement it with the existing widgets.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能需要查看建议选项的组合框。
我希望这就是你的想法。
You might want to look at Combo Box that Suggests Options.
I hope this is what you were thinking of.
几年前,我通过子类化 TextCtrl 制作了一个这样的控件。 它支持 HTML 格式的建议。 给你。
Few years ago I made a control like this by subclassing TextCtrl. It supports HTML formating for suggestions. Here you go.