2016年12月18日

python提示找不到images模块解决办法

摘要: 1、将import images 修改为 import wx.py images as images; 2、将images.getNewBitmap()修改为images.getPyBitmap(). 阅读全文

posted @ 2016-12-18 17:02 临风飞扬 阅读(374) 评论(0) 推荐(0) 编辑

wxPython学习1--创建最小的空的wxPython程序

摘要: 创建一个名为bare.py的程序:1 import wx #123class App(wx.App):#245 def OnInit(self): #36 frame = wx.Frame(parent=None, title='Bare')7 frame.Show()8 return True91 阅读全文

posted @ 2016-12-18 09:35 临风飞扬 阅读(164) 评论(0) 推荐(0) 编辑

导航