This commit is contained in:
dengrb1
2023-05-03 03:40:52 +00:00
committed by GitHub
parent 4a864608d4
commit 1e081209d3
2 changed files with 5 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ def sittings():
st = tk.Tk() st = tk.Tk()
bt_update = tk.Button(st, text='更新日志', command=update) bt_update = tk.Button(st, text='更新日志', command=update)
bt_gk = tk.Button(st, text='关于', command=gk) bt_gk = tk.Button(st, text='关于', command=gk)
bt_jc = tk.Button(root, text='检测文件完整度', command=jc) bt_jc = tk.Button(st, text='检测文件完整度', command=jc)
# pack # pack
bt_jc.pack() bt_jc.pack()
bt_update.pack() bt_update.pack()
@@ -66,7 +66,7 @@ bt_web_xz = tk.Button(root, text='网站选择', command='xxx')
bt_st = tk.Button(root, text='其他内容', command=sittings) bt_st = tk.Button(root, text='其他内容', command=sittings)
quit_bt = tk.Button(root, text='退出', command=quit_exe) quit_bt = tk.Button(root, text='退出', command=quit_exe)
bt_web_xz.pack()
bt_st.pack() bt_st.pack()
quit_bt.pack() quit_bt.pack()

View File

@@ -3,3 +3,5 @@ taskkill -f -t -im extkj.exe
taskkill -f -t -im gk.exe taskkill -f -t -im gk.exe
taskkill -f -t -im update.exe taskkill -f -t -im update.exe
taskkill -f -t -im wuguokai.exe taskkill -f -t -im wuguokai.exe
exit()