摘要:
简单的文本编辑器#使用尺寸器import wxdef load(event): file=open(filename.GetValue()) contents.SetValue(file.read()) file.close()def save(event): file=open(filename.GetValue(),'w') file.write(contents.GetValue()) file.close()app = wx.App()win = wx.Frame(None, title ="Simple Editor", size = (410,3 阅读全文
posted @ 2012-08-21 10:13 immiki 阅读(204) 评论(0) 推荐(0) 编辑