_真的_禁用 GtkTreeView 搜索
如何真正禁用 gtk treeview 交互式搜索? 文档说set_enable_search(False)
,但如果我这样做,CTRL+F仍然会导致出现恼人的搜索弹出窗口。连接到 start-interactive-search
并返回 True
也不起作用。
How do I really disable gtk treeview interactive search? The docs say to set_enable_search(False)
, but if I do this, CTRL+F still causes an annoying search pop-up to appear. Connecting to start-interactive-search
and returning True
doesn't work either.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pygtk 文档没有说明这一点,但是 C 文档 这样做:
为列传递
-1
确实会禁用搜索。The pygtk docs don't state this, but the C docs do:
Passing
-1
for the column really disables searching.