ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

GUI---班级信息收集

2021-12-28 23:37:11  阅读:207  来源: 互联网

标签:班级 GUI proportion self --- label hsizer panel wx


import pymysql
db =pymysql.connect(host='localhost',user='root',password='15019599752',database='mrsoft',charset='utf8')
#使用cursor()方法创建一个游标对象
cursor = db.cursor()
#如果存在则删除
cursor.execute("DROP TABLE IF EXISTS check")
sql = """CREATE TABLE check(
name CHAR(20) NOT NULL,
class CHAR(20) NOT NULL,
number INT)"""
#执行sql语句
cursor.execute(sql)
db.close()
import pymysql
import wx
class MyFrame(wx.Frame):
def __init__(self,parent,id):
wx.Frame.__init__(self,parent,id,'班级信息收集',size=(400,300))
#创建面板
panel = wx.Panel(self)
#创建“保存”和“查询”按钮,并绑定事件
self.bt_storage = wx.Button(panel,label="保存")
self.bt_storage.Bind(wx.EVT_BUTTON,self.OnclickStorage)
self.bt_inquire = wx.Button(panel,label ='查询')
self.bt_inquire.Bind(wx.EVT_BUTTON,self.OnclickInquire)
#创建文本,左对齐
self.title =wx.StaticText(panel,label ="保存信息请输入用户的学号班级和姓名\n\t查询请输入姓名或学号")
self.label_class =wx.StaticText(panel,label ="班级:")
self.text_class =wx.TextCtrl(panel,style =wx.TE_LEFT)
self.label_user =wx.StaticText(panel,label ="姓名:")
self.text_user =wx.TextCtrl(panel,style =wx.TE_LEFT)
self.label_number = wx.StaticText(panel,label ="学号:")
self.text_number = wx.TextCtrl(panel,style =wx.TE_LEFT)
#添加容器,容器中控件横向排列
hsizer_class =wx.BoxSizer(wx.HORIZONTAL)
hsizer_class.Add(self.label_class,proportion=0,flag=wx.ALL,border=5)
hsizer_class.Add(self.text_class,proportion=1,flag=wx.ALL,border=5)
hsizer_user = wx.BoxSizer(wx.HORIZONTAL)
hsizer_user.Add(self.label_user,proportion=0,flag=wx.ALL,border=5)
hsizer_user.Add(self.text_user,proportion=1,flag =wx.ALL,border=5)
hsizer_number =wx.BoxSizer(wx.HORIZONTAL)
hsizer_number.Add(self.label_number,proportion=0,flag=wx.ALL,border=5)
hsizer_number.Add(self.text_number,proportion=1,flag=wx.ALL,border=5)
hsizer_button =wx.BoxSizer(wx.HORIZONTAL)
hsizer_button.Add(self.bt_storage,proportion=0,flag=wx.ALIGN_CENTER,border=5)
hsizer_button.Add(self.bt_inquire,proportion=0,flag=wx.ALIGN_CENTER,border=5)
#添加容器,容器中的控件纵向排列
vsizer_all = wx.BoxSizer(wx.VERTICAL)
vsizer_all.Add(self.title,proportion=0,flag=wx.BOTTOM |wx.TOP |wx.ALIGN_CENTER,border=15)

 

 

标签:班级,GUI,proportion,self,---,label,hsizer,panel,wx
来源: https://www.cnblogs.com/3031lyl/p/15743249.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有