Commit 29217954 by BellCodeEditor

auto save

parent 02d0a52d
Showing with 16 additions and 0 deletions
import tkinter as tk
import tkinter.messagebox
import json
studentInfos=[]
root=tk.TK()
root['height']=200
root['width']=250
root.title('学生管理系统')
choice=tk.IntVar()
choice.set(1)
radioAdd=tk.Radiobutton(root,
variable=choice,
value=1
text='添加学生信息')
radioAdd.place(x=70,y=10)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment