是否有可能设置使用PyGTK的图像的位置?
import pygtk
import gtk
class Example:
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.image = gtk.Image()
self.image.set_from_file("example.png")
# Position goes here (it should, shouldn't it?)
self.window.add(self.image)
self.image.show()
self.window.fullscreen()
self.window.show_all()