摘要:
#!/usr/bin/pythonimport wxfrom wx.lib.buttons import GenBitmapTextButtonclass Browser(wx.Frame): def __init__(self, parent, id, title): wx.Frame.__ini 阅读全文
摘要:
#!/usr/bin/python# -*- coding: utf-8 -*-import wxclass Example(wx.Frame): def __init__(self, *args, **kw): super(Example, self).__init__(*args, **kw) 阅读全文
摘要:
#!/usr/bin/python# spreadsheet.pyfrom wx.lib import sheetimport wxclass MySheet(sheet.CSheet): def __init__(self, parent): sheet.CSheet.__init__(self, 阅读全文
摘要:
# _*_ coding: utf-8 _*___author__ = 'pythonwu'__date__ = "2018/5/15 15:05"import wximport sysclass Frame(wx.Frame): def __init__(self,parent,id,title) 阅读全文
摘要:
# _*_ coding: utf-8 _*___author__ = 'pythonwu'__date__ = "2018/5/15 16:20"import wxfrom wx.py.shell import ShellFramefrom wx.py.filling import Filling 阅读全文
摘要:
#!/usr/bin/env python3# -*- coding: utf-8 -*-import wximport randomclass Tetris(wx.Frame): def __init__(self, parent): wx.Frame.__init__(self, parent, 阅读全文