摘要: import wxclass Frame(wx.Frame): passclass App(wx.App): def OnInit(self): self.frame=Frame(parent=None,title='Spare') self.frame.Sh... 阅读全文
posted @ 2014-06-10 00:32 yufenghou 阅读(144) 评论(0) 推荐(0)
摘要: //导入必须的wxPython包import wx//子类化wxPython应用程序类class App(wx.App): //顶一个应用程序初始化方法 def OnInit(self): frame=wx.Frame(parent=None,title='... 阅读全文
posted @ 2014-06-10 00:21 yufenghou 阅读(141) 评论(0) 推荐(0)