我正在使用PyGtk在树视图中显示一些字符串信息。
这是我的代码:

def create_table(self):
    self.mainbox = gtk.ScrolledWindow()
    self.mainbox.set_policy( gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
    self.window.add( self.mainbox)

    model = gtk.ListStore( str, str, str)
    self.treeview = gtk.TreeView(model=None)

    col = gtk.TreeViewColumn( "Element")
    self.treeview.append_column( col)
    cell = gtk.CellRendererText()
    col.pack_start( cell, expand=False)
    col.set_attributes( cell, text=0)

    col = gtk.TreeViewColumn( "Test")
    self.treeview.append_column( col)
    cell = gtk.CellRendererSpin()
    col.pack_start( cell, expand=False)
    col.set_attributes( cell, text=1)

    col = gtk.TreeViewColumn( "Command")
    self.treeview.append_column( col)
    cell = gtk.CellRendererSpin()
    col.pack_start( cell, expand=False)
    col.set_attributes( cell, text=0)

    cell = gtk.CellRendererCombo()
    self.mainbox.add( self.treeview)
    self.mainbox.set_size_request( 500, 260)
    self.mainbox.show()
    self.vbox.pack_start(self.mainbox, expand=False, fill=True, padding=0)


然后,我创建了一个在事件按钮后填充树视图的方法。电话:

 def populate_treeview_button(self):
    button = gtk.Button(label='Populate Table')
    button.connect("clicked", self.create_model)
    self.vbox.pack_start(button, expand=False, fill=True, padding=0)


和方法(我在table_information属性处接收到字典列表,其中键是元素(字符串),值是具有2个字符串的列表):

def create_model(self, beats_me_param):
    model = gtk.ListStore( str, str, str)

    elements = []
    tests = []
    commands = []

    table_information = self.get_organized_table()

    for i in table_information:
        for dicts in i:
            for element in dicts.keys():
                elements.append(element)

    for i in table_information:
        for dicts in i:
            for value in dicts.values():
                tests.append(value[0])
                commands.append(value[1])


    for i in range(len(elements)):
        model.append([elements[i], tests[i], commands[i]])

    self.treeview.set_model(model)


当我在树状视图中看到结果时,我在第三列得到的值与第一列相同,当然它们是不同的。图片如下:


我在“追加”时刻更改了元素的顺序,并且发生了相同的情况,值发生了变化,但是更改后的值在第三列重复出现。怎么了

最佳答案

问题是因为我在第三列和第一列设置了相同的索引。

col = gtk.TreeViewColumn( "Command")
self.treeview.append_column( col)
cell = gtk.CellRendererSpin()
col.pack_start( cell, expand=False)
col.set_attributes( cell, text=2)


正确的方式。

10-05 17:47