摘要: #!/usr/bin/pythonimport wxfrom wx.lib.buttons import GenBitmapTextButtonclass Browser(wx.Frame): def __init__(self, parent, id, title): wx.Frame.__ini 阅读全文
posted @ 2018-05-17 15:57 五等码农 阅读(268) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python# -*- coding: utf-8 -*-import wxclass Example(wx.Frame): def __init__(self, *args, **kw): super(Example, self).__init__(*args, **kw) 阅读全文
posted @ 2018-05-17 15:56 五等码农 阅读(342) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python# spreadsheet.pyfrom wx.lib import sheetimport wxclass MySheet(sheet.CSheet): def __init__(self, parent): sheet.CSheet.__init__(self, 阅读全文
posted @ 2018-05-17 15:55 五等码农 阅读(263) 评论(0) 推荐(0) 编辑
摘要: # _*_ coding: utf-8 _*___author__ = 'pythonwu'__date__ = "2018/5/15 15:05"import wximport sysclass Frame(wx.Frame): def __init__(self,parent,id,title) 阅读全文
posted @ 2018-05-17 15:53 五等码农 阅读(156) 评论(0) 推荐(0) 编辑
摘要: # _*_ coding: utf-8 _*___author__ = 'pythonwu'__date__ = "2018/5/15 16:20"import wxfrom wx.py.shell import ShellFramefrom wx.py.filling import Filling 阅读全文
posted @ 2018-05-17 15:52 五等码农 阅读(1687) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python3# -*- coding: utf-8 -*-import wximport randomclass Tetris(wx.Frame): def __init__(self, parent): wx.Frame.__init__(self, parent, 阅读全文
posted @ 2018-05-17 15:23 五等码农 阅读(491) 评论(0) 推荐(0) 编辑