""" StudentUI.py 读文件类 date 2023-06-24 edit: Geovin Du,geovindu, 涂聚文 ide: PyCharm 2023.1 python 11 """ import datetime import sys import os from tkinter import ttk from tkinter import * from tkinter.ttk import * from ttkbootstrap import Style # pip install ttkbootstrap import random import Model.StudentListInfo import BLL.StudentListBLL class StudentUi(object): global tree stubll = BLL.StudentListBLL.StudentBll() def __init__(self): self.name="geovindu" def __del__(self): print(f"{self.name}") def delete(cls): #global tree curItem = cls.tree.focus() val=cls.tree.item(curItem)['values'][0] #id print(val) print(cls.tree.selection()) cls.tree.delete(cls.tree.selection()) cls.stubll.delSql(val) #需要删除关联的数据才可以删除 #cls.stubll.delSql() def main(cls): """ 窗体绑定数据 :return: """ #stubll = BLL.StudentListBLL.StudentBll() geovindu =cls.stubll.selectSqlOrder("StudentNO asc") # list() style=Style(theme='darkly') #定义窗口样式 window=style.master window.title("学生管理") # win = Tk() screenWidth = window.winfo_screenwidth() screenHeight = window.winfo_screenheight() width=100 height=600 x=int((screenWidth-width)/2) y=int((screenHeight-height)/2) window.geometry('{}x{}+{}+{}'.format(width,height,x,y)) #Treeview 控件 cls.tree=ttk.Treeview(master=window,style='success.Treeview',height=25,show='headings') cls.tree.pack() #定义列 cls.tree['columns']=("StudentId","StudentName","StudentNO","StudentBirthday","Age") #设置列属性,列不显示 cls.tree.column("StudentId",width=150,minwidth=100,anchor=S) cls.tree.column("StudentName", width=150, minwidth=100, anchor=S) cls.tree.column("StudentNO", width=150, minwidth=100, anchor=S) cls.tree.column("StudentBirthday", width=150, minwidth=100, anchor=S) cls.tree.column("Age", width=150, minwidth=100, anchor=S) #设置表头 cls.tree.heading("StudentId",text="序号") cls.tree.heading("StudentName", text="姓名") cls.tree.heading("StudentNO", text="学号") cls.tree.heading("StudentBirthday", text="出生日期") cls.tree.heading("Age", text="年龄") #treeView控件绑定数据 i=1 for Model.StudentListInfo.StudentList in geovindu: cls.tree.insert("",i,text="2",values=(Model.StudentListInfo.StudentList.getStudentId(),Model.StudentListInfo.StudentList.getStudentName(),Model.StudentListInfo.StudentList.getStudentNO(),Model.StudentListInfo.StudentList.getStudentBirthday(),Model.StudentListInfo.StudentList.getAge())) i+=1 #删除按钮 ttk.Button(window,text="删除",style='success,TButton',command=cls.delete).pack(side='left',padx=5,pady=10) window.mainloop()
学习的路是漫长的.....
标签:python,text,GUI,tree,width,window,import,using,cls From: https://www.cnblogs.com/geovindu/p/17506666.html