ComboBox有两列

时间:2016-08-27 19:10:22

标签: python python-3.x gtk gtk3

我尝试创建一个包含两列的GtkComboBox。我找到了一些例子,我试图适应但没有成功。仅显示将成为第二列的项目。

#!/usr/bin/env python3

import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk

class ComboBox(Gtk.Window):
    def __init__(self):
        Gtk.Window.__init__(self)
        self.set_title("ComboBox")
        self.set_default_size(150, -1)
        self.connect("destroy", Gtk.main_quit)

        slist = Gtk.ListStore(str, str)
        slist.append(['01', 'Ferro'])
        slist.append(['07', 'Uranio'])
        slist.append(['08', 'Cobalto'])

        combobox = Gtk.ComboBox()
        combobox.set_model(slist)
        combobox.set_active(0)
        combobox.set_wrap_width(2)
        self.add(combobox)

        cellrenderertext = Gtk.CellRendererText()
        combobox.pack_start(cellrenderertext, True)
        combobox.add_attribute(cellrenderertext, "text", 1)

window = ComboBox()
window.show_all()

Gtk.main()

我想像这样创建一个GtkComboBox

enter image description here

1 个答案:

答案 0 :(得分:1)

每个列都必须有一个CellRendererText才能显示。

cell1 = Gtk.CellRendererText()
cell2 = Gtk.CellRendererText()
combobox.pack_start(cell1, True)
combobox.pack_start(cell2, True)
combobox.add_attribute(cell1, "text", 0)
combobox.add_attribute(cell2, "text", 1)