wxpython在Linux Mint上无法正常工作

时间:2012-06-01 08:01:31

标签: python wxpython

所以,我一直在尝试使用thenewboston.com上的视频来学习wxpython,但是当我运行这段代码时,我得到的只是一个空白的灰色窗口。当我更改代码中的大小时,窗口的大小甚至不会改变!窗口标题,按钮和面板也不会显示为空白。我使用Linux Mint所以我认为这可能是原因。请帮我解决这个问题!

import wx

class mainApp(wx.Frame):

    def __init_(self,parent,id):
        wx.Frame.__init__(self,parent,id,title = 'Frame aka Window',size=(800,900))
        panel=wx.Panel(self)
        buttonExit=wx.Button(panel,label="Quit", pos=(50,50),size=(60,60))
        self.Bind(wx.EVT_BUTTON,self.closebutton,buttonExit)
        self.Bind(wx.EVT_CLOSE,self.closewindow)

    def closebutton(self,event):
        self.Close(True)

    def closewindow(self,event):
        self.Destroy()



if __name__ == '__main__':
    app = wx.PySimpleApp()
    frame=mainApp(parent=None,id=-1)
    frame.Show()
    app.MainLoop()

提前致谢:)

1 个答案:

答案 0 :(得分:3)

你拼错__init__ __init_:)