Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有我可以让下拉框接受文本。因为我想让下拉框列出以前输入的项目并能够添加新项目。
我在谷歌上进行了很好的搜索,但没有找到任何东西。
谢谢山姆
您正在寻找一个Gtk.ComboBoxText与条目。
Gtk.ComboBoxText
from gi.repository import Gtk combo_box = Gtk.ComboBoxText.new_with_entry()
有关文档,请参见此处。