tkinter1 Python 윈도우 종료 프로그램 tkinter를 이용해서 조금 수정했다.(재부팅 추가)PyQt5를 주로 사용했었는데 tkinter도 간단히 사용하기 편하고 좋다.import tkinter as tkimport osimport tkinter.messagebox as messageboxroot = tk.Tk()root.title("프로그램 종료")root.attributes('-toolwindow', True) # 윈도우창 접기 버튼 없애기root.resizable(False, False)width = 260heigt = 50# 창 크기 및 위치x = root.winfo_screenwidth() # 가로 넓이y = root.winfo_screenheight() # 세로 넓이left_top_x = int(x/2-width/2) #중앙에 위.. 2024. 6. 14. 이전 1 다음