PyGTK
Tofloor
poster avatar
hfy1991
deepin
2012-01-17 16:51
Author
import gtk
class PyApp(gtk.Window):
    def __init__(self):
        super(PyApp,self).__init__()

        self.connect("destroy", gtk.main_quit)
        self.set_size.request(250,150)
        self.set_position(gtk.WIN_POS_CENTER)
        self.show()
PyApp()
gtk.main()

PyGTK第一个例子,运行显示说PyApp没有set_size方法!!!
为什么,是不是还需要配置什么环境?
本人电脑环境deepin10.06,以下两条命令已运行
sudo apt-get install gnome-core-devel
sudo apt-get install build-essential
Reply Favorite View the author
All Replies
186******98
deepin
2012-01-17 17:55
#1
import gtk
class PyApp(gtk.Window):
    def __init__(self):
        super(PyApp,self).__init__()

        self.connect("destroy", gtk.main_quit)
        self.set_size.request(250,150)
        self.set_position(gtk.WIN_POS_CENTER)
        self.show()
PyApp()
gtk.main()

PyGTK第一个例子,运行显示说PyApp没有set_size方法!!!
为什么,是不是还需要配置什么环境?
本人电脑环境deepin10.06,以下两条命令已运行
sudo apt-get install gnome-core-devel
sudo apt-get install build-essential

你的API用错了, 应该是 set_size_request 而不是 set_size.request
Reply View the author
hfy1991
deepin
2012-01-17 18:46
#2
[quote]import gtk
class PyApp(gtk.Window):
    def __init__(self):
        super(PyApp,self).__init__()

        self.connect("destroy", gtk.main_quit)
        self.set_size.request(250,150)
        self.set_position(gtk.WIN_POS_CENTER)
        self.show()
PyApp()
gtk.main()

PyGTK第一个例子,运行显示说PyApp没有set_size方法!!!
为什么,是不是还需要配置什么环境?
本人电脑环境deepin10.06,以下两条命令已运行
sudo apt-get install gnome-core-devel
sudo apt-get install build-essential

你的API用错了, 应该是 set_size_request 而不是 set_size.request[/quote]
恩,可以运行了,还以为差东西,诶。。
Reply View the author