일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- numpy
- vue.js
- kubernetes
- Django
- 그래픽 유저 인터페이스
- paper review
- 데이터베이스
- pytorch
- 논문 리뷰
- 장고
- 파이썬
- MariaDB
- 컴퓨터 비전
- POD
- 웹 프로그래밍
- 딥러닝
- tensorflow
- Computer Vision
- FLASK
- 텐서플로우
- 파이토치
- Docker
- Web Programming
- OpenCV
- Tkinter
- Deep Learning
- Python
- GUI
- k8s
- yaml
- Today
- Total
Maxima's Lab
[Python, Tkinter] Graphic User Interface (GUI) - Messagebox (메세지 박스) 본문
[Python, Tkinter] Graphic User Interface (GUI) - Messagebox (메세지 박스)
Minima 2022. 7. 24. 22:14안녕하세요, 오늘은 Tkinter 모듈을 사용하여, GUI 중 Messagebox를 적용하는 방법에 대해서 알아보겠습니다.
다음은 Messagebox를 구성하는 항목들은 다음과 같습니다.
- Message
- showinfo
- showwarning
- showerror
- askquestion
- askokcancel
- askretrycancel
- askyesno
- askyesnocancel
간단하게 Message를 윈도우에 출력하는 방법에 대해서 알아보겠습니다.
from tkinter import *
from tkinter import messagebox
win = Tk()
win.title("Maxima")
win.geometry("800x600+200+200")
win.resizable(False, False)
msg = Message(win, text = "This is a message")
msg.config(bg='black', fg='white', width=500)
msg.pack()
win.mainloop()
위의 코드를 실행하여 출력되는 결과는 다음과 같습니다.
위의 전체 코드들에 대해 세부적으로 알아보도록 하겠습니다.
msg = Message(win, text = "This is a message")
msg.config(bg='black', fg='white', width=500)
msg.pack()
Message() 함수를 통해, win에 연결시키고 "This is a message" 라는 text로 메세지를 설정하였습니다. 추가적으로, msg.config() 함수를 적용하므로써 Background Color는 'black'으로 글자색은 'white'로 설정하였으며, Message의 너비는 500으로 설정하여 한줄로 메세지가 출력될 수 있도록 하였습니다.
다음은 실행된 윈도우 창을 닫을 때 message.showinfo() 함수를 실행시키는 방법에 대해서 알아보겠습니다.
from tkinter import *
from tkinter import messagebox
win = Tk()
win.title("Maxima")
win.geometry("800x600+200+200")
win.resizable(False, False)
def showfunc_1():
messagebox.showinfo(title = None, message = "This is a message")
win.protocol("WM_DELETE_WINDOW", showfunc_1)
win.mainloop()
위의 전체 코드들에 대해 세부적으로 알아보도록 하겠습니다.
def showfunc_1():
messagebox.showinfo(title = None, message = "This is a message")
win.protocol("WM_DELETE_WINDOW", showfunc_1)
위의 코드 내 win.protocol("WM_DELETE_WINDOW", showfunc_1)를 사용하여, 윈도우 창을 닫는 버튼을 눌렀을 때 showfunc_1 함수가 실행되며 "This is a message" 라는 메세지를 messagebox.showinfo() 함수를 통해 출력하는 코드입니다.
다음은 messagebox.showwarning() 함수를 통해 출력되는 결과 이미지들입니다.
다음은 순서대로 messagebox.askquestion(), messagebox.askokcancel(), messagebox.askretrycancel(), messagebox.askyesno(), messagebox.askyesnocancel() 함수가 실행되어 메세지가 출력된 이미지들입니다.
위의 코드 예시들을 통해 다양한 메세지들과 옵션들 그리고 messagebox 내 함수들을 활용하여 다양한 조합을 적용해보시기 바랍니다.
지금까지, Tkinter 모듈을 사용하여, Graphic User Interface (GUI)의 Messagebox를 적용하는 방법에 대해서 알아보았습니다.
'Python > GUI (Graphic User Interface)' 카테고리의 다른 글
[Python, Tkinter] Graphic User Interface (GUI) - Place (위젯 배치) (0) | 2022.08.11 |
---|---|
[Python, Tkinter] Graphic User Interface (GUI) - Entry 생성 (0) | 2022.07.26 |
[Python, Tkinter] Graphic User Interface (GUI) - Event (이벤트) (0) | 2022.07.24 |
[Python, Tkinter] Graphic User Interface (GUI) - 버튼을 이용한 윈도우 창 생성 및 닫기 (0) | 2022.07.18 |
[Python, Tkinter] Graphic User Interface (GUI) - Button(버튼) 생성 (0) | 2022.07.16 |