_真的_禁用 GtkTreeView 搜索

发布于 2024-09-16 00:13:56 字数 293 浏览 4 评论 0原文

如何真正禁用 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 技术交流群。

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

发布评论

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

评论(1

记忆消瘦 2024-09-23 00:13:56

pygtk 文档没有说明这一点,但是 C 文档 这样做:

gtk_tree_view_set_search_column (GtkTreeView *tree_view, gint column)

column :
    the column of the model to search in, or -1 to disable searching 

为列传递 -1 确实会禁用搜索。

The pygtk docs don't state this, but the C docs do:

gtk_tree_view_set_search_column (GtkTreeView *tree_view, gint column)

column :
    the column of the model to search in, or -1 to disable searching 

Passing -1 for the column really disables searching.

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