Python& GTK3:如何创建Liststore

时间:2011-09-13 04:12:49

标签: python pygobject gtk3

在PyGtk中,我总是使用它来创建一个带有Image的ListStore(使用它与IconView一起显示文件):

store = gtk.ListStore(str, gtk.gdk.Pixbuf, bool)

但我无法弄清楚如何使用Python 3和PyGObject。

1 个答案:

答案 0 :(得分:8)

以下是:

from gi.repository import Gtk, GdkPixbuf
store = Gtk.ListStore(str, GdkPixbuf.Pixbuf, bool)