如何在弹出窗口中添加组合框并返回用户选择的结果?我正在尝试调整我见过的其他示例中的代码,因为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()