资源简介

简单教务系统,包含数据库结构和简要自述文件。基于Python和MySQL,使用wx和pymysql编写py程序文件,实现对数据库的增删改查操作。

资源截图

代码片段和文件信息

import wx

class MyApp_all(wx.frame):
    def __init__(self a=None b=None c=None d=Nonee=Nonef=Noneg=Noneh=None **kw):
        # wx.frame.__init__(self *args **kw)
        super(MyApp_all self).__init__(**kw)
        self.a = a
        self.b = b
        self.c = c
        self.d = d
        self.e = e
        self.f = f
        self.g = g
        self.h = h
        # frame = wx.frame(parent=None title=‘登陆界面‘ size=(450 300))
        self.Center()
        self.panel = wx.Panel(self)
        self.LoginInterface()

    def LoginInterface(self):
        #添加静态标签
        label_1 = wx.StaticText(self.panel -1 “%s“%self.a pos=(80 50))
        label_2 = wx.StaticText(self.panel -1 “%s“%self.b pos=(80 100))
        label_3 = wx.StaticText(self.panel -1 “%s“ %self.c pos=(80 150))
        label_4 = wx.StaticText(self.panel -1 “%s“ %self.d pos=(80 200))
        label_5 = wx.StaticText(self.panel -1 “%s“ %self.e pos=(80 250))
        label_6 = wx.StaticText(self.panel -1 “%s“ %self.f pos=(80 300))
        label_7 = wx.StaticText(self.panel -1 “%s“ %self.g pos=(80 350))
        label_8 = wx.StaticText(self.panel -1 “%s“ %self.h pos=(80 400))


        #frame.Center()
        #frame.Show(True)



if __name__ == ‘__main__‘:
    app = wx.App()
    login = MyApp_all(parent=None title=‘全体成绩‘ size=(450 500))
    login.Show()
    app.MainLoop()
    #app = MyApp_all()
    #app.MainLoop()

评论

共有 条评论