0

操作系统:Ubuntu 12.1,python:2.7.3,wx:2.8 gtk2

#!/usr/bin/env python
#-*- coding:utf-8 -*-

import wx
import sys

class Frame (wx.Frame):

    def __init__(self, parent, id, title):
        print "Frame Initialised"
        wx.Frame.__init__(self, parent, id, title)

class App (wx.App):

    def __init__ (self, redirect=True, filename=None):
        print "Application Initialised"
        wx.App.__init__(self, redirect, filename)

    def OnInit (self):
        print "This is Application"
        self.frame = Frame (parent=None, id=-1, title="Startup")
        self.frame.show ()
        self.SetTopWindow (self.frame)
        print >> sys.stderr, "A fake error message"
        return True

    def OnExit (self):
        print "Application Exiting"

if __name__ == '__main__':
    app = App (redirect=True)
    print "Things Before"
    app.MainLoop ()
    print "Things After"

错误:

(python:3805): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap"

此错误重复 3 次并且不给出输出。剧本有什么问题吗?感谢您的帮助。

我通过安装 pixbuf 修复了警告:

sudo apt-get install gtk2-engines-pixbuf

现在有一个新问题;框架只是闪烁并迅速消失。我无法阅读任何这些重定向的消息!

4

1 回答 1

0
self.frame.show()

应该

self.frame.Show ()

大写字母“S”

于 2013-06-08T13:11:22.827 回答