gpt4 book ai didi

python - Glade GTK3 Python TreeView 切换不会切换

转载 作者:太空宇宙 更新时间:2023-11-03 21:15:36 25 4
gpt4 key购买 nike

我有一个应用程序,当我使用 Glade 构建应用程序时,GtkCellRendererToggle 不会触发回调。具体来说,如果我点击切换按钮时将其设置为 True,则会执行回调,但当按钮切换为 False 时,不会触发回调。

我正在使用 Python 3、GTK3 和 Glade 3.22.1 我包含了 Python 源代码以及相关的 xml。工作示例来自 python gtk3 教程:https://python-gtk-3-tutorial.readthedocs.io/en/latest/cellrenderers.html

Blockquote

<object class="GtkTreeView" id="treeview">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="model">liststore</property>
<child internal-child="selection">
<object class="GtkTreeSelection">
<property name="mode">none</property>
</object>
</child>
<child>
<object class="GtkTreeViewColumn" id="togglecolumn">
<property name="title">Togggle</property>
<child>
<object class="GtkCellRendererToggle" id="togglerenderer">
<signal name="toggled" handler="on_cell_toggled" swapped="no"/>
</object>
<attributes>
<attribute name="activatable">0</attribute>
<attribute name="active">0</attribute>
</attributes>
</child>
</object>

/>

Blockquote

builder = Gtk.Builder()
builder.add_from_file("example.glade")
window = builder.get_object("window")
# Load list data.
self.liststore = builder.get_object ("liststore")

builder.connect_signals(self)
window.show()

def on_cell_toggled(self, widget, path):
self.liststore[path][0] = not self.liststore[path][0]

/>

您将看到 3 行切换按钮,其中第一行和第三行已选中。如果单击其中一个复选框,则会执行 on_cell_toggle 回调,但一旦将其切换为 false,就不再触发回调。在教程的示例中,切换按预期工作。

最佳答案

您已将可激活属性设置为与事件属性相同的列:

<attributes>
<attribute name="activatable">0</attribute>
<attribute name="active">0</attribute>
</attributes>

应该是:

<attributes>
<attribute name="active">0</attribute>
</attributes>

关于python - Glade GTK3 Python TreeView 切换不会切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54738497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com