Chinaunix首页 | 论坛 | 博客
  • 博客访问: 540293
  • 博文数量: 48
  • 博客积分: 1371
  • 博客等级: 中尉
  • 技术积分: 587
  • 用 户 组: 普通用户
  • 注册时间: 2011-10-04 15:32
文章分类

全部博文(48)

文章存档

2013年(5)

2012年(35)

2011年(8)

分类: Python/Ruby

2013-01-27 18:50:03

"""

wxformbuilder 生成的代码在这里

"""


class App(wx.App):
   def OnInit(self):
      frame = MyFrame1(None)   ##这里为我们生成GUI的Frame类名
      frame.Show()
      return True
app = App()
app.MainLoop()

阅读(4768) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~