This commit is contained in:
dengrb1
2023-04-28 21:44:12 +08:00
committed by GitHub
parent 533ab961ce
commit 01d119f56b
6 changed files with 10 additions and 10 deletions

16
lbb.pyw Normal file
View File

@@ -0,0 +1,16 @@
import tkinter as tk
from tkinter import messagebox
def quit_exe():
root.destroy()
root = tk.Tk()
root.title('Error 422')
root.geometry('100x100')
messagebox.showerror('System', '别看了,已经废弃了')
btn_quit = tk.Button(root, text='退出', command=quit_exe)
btn_quit.pack()
root.mainloop()