在PyGtk中,我总是使用它来创建一个带有Image的ListStore(使用它与IconView一起显示文件):
store = gtk.ListStore(str, gtk.gdk.Pixbuf, bool)
但我无法弄清楚如何使用Python 3和PyGObject。
答案 0 :(得分:8)
以下是:
from gi.repository import Gtk, GdkPixbuf
store = Gtk.ListStore(str, GdkPixbuf.Pixbuf, bool)