如何在pygtk中为消息添加组合框?

时间:2014-03-10 17:02:18

标签: python combobox dialog gtk pygtk

如何在弹出窗口中添加组合框并返回用户选择的结果?我正在尝试调整我见过的其他示例中的代码,因为gtk文档并不十分清楚。我是下面的事情,但我无法快速(或者,非常慢,更准确)。

        message = gtk.Dialog(title=None,
                             parent=None,
                             flags=0,
                             buttons=None)

        combo = gtk.combo_box_new_text()
        for key in self.MyBom.potential_keywords:
            combo.append_text(key)
        combo.set_active(0)

        cell = gtk.CellRendererText()
        combo.pack_start(cell, True)
        combo.add_attribute(cell, 'text', 0)

        response = 0

        message.add_action_widget(combo, response)
        response = message.run()

0 个答案:

没有答案