如何真正禁用gtk treeview交互式搜索? docs对set_enable_search(False)
说,但如果我这样做, CTRL + F 仍会导致出现恼人的搜索弹出窗口。连接到start-interactive-search
并返回True
也不起作用。
答案 0 :(得分:5)
pygtk文档没有说明这一点,但是C docs做了:
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
确实会禁用搜索。