标签: python gtk3
有没有我可以让下拉框接受文字。因为我想让下拉框列表上一项输入,并能够添加新项目。
我在google上搜索过但没找到任何内容。
由于 萨姆
答案 0 :(得分:4)
您正在寻找带有条目的Gtk.ComboBoxText。
Gtk.ComboBoxText
from gi.repository import Gtk combo_box = Gtk.ComboBoxText.new_with_entry()
请参阅here for the documentation。