GTK / PyGTK 使 ComboBox 可通过键盘搜索
是否可以使 ComboBox 可搜索?如果是,怎么办?
我希望能够,当组合框处于活动状态并且使用键盘键入字母时,选择组合框中以该字母开头的第一个项目,依此类推下一个字母。
例如,这与网页内的组合框具有相同的功能。
我找不到任何选项可以在 ComboBox 或包含数据的 ListStore 上实现此目的,其方式与 TreeView 具有方法 set_enable_search
和 set_search_column
的方式相同。
Is it possible to make a ComboBox searchable ? If yes, how ?
I want to be able, when the ComboBox is active and a letter is typed with the keyboard, to select the first item beginning with this letter inside the ComboBox and so on with the next letters.
The is the same functionality of a ComboBox inside a webpage, for example.
I can't find any option the achieve this on the ComboBox or on the ListStore containing the data in the same way as the TreeView has the methods set_enable_search
and set_search_column
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如何to:GTK+ 树视图和自动完成简介。
How to: an introduction to GTK+ treeviews and autocompletion.
我最终决定编写自己的完成函数:
I finally decided to write my own completion function :