下拉框中的GTK3 Python类型

时间:2012-09-27 08:57:12

标签: python gtk3

有没有我可以让下拉框接受文字。因为我想让下拉框列表上一项输入,并能够添加新项目。

我在google上搜索过但没找到任何内容。

由于 萨姆

1 个答案:

答案 0 :(得分:4)

您正在寻找带有条目的Gtk.ComboBoxText

from gi.repository import Gtk
combo_box = Gtk.ComboBoxText.new_with_entry()

请参阅here for the documentation