250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- tensorflow
- 파이썬
- Python
- 그래픽 유저 인터페이스
- OpenCV
- 논문 리뷰
- Web Programming
- pytorch
- Computer Vision
- kubernetes
- 텐서플로우
- 웹 프로그래밍
- 장고
- Django
- 데이터베이스
- 딥러닝
- 컴퓨터 비전
- numpy
- Tkinter
- Docker
- Deep Learning
- FLASK
- vue.js
- yaml
- GUI
- paper review
- POD
- MariaDB
- k8s
- 파이토치
Archives
- Today
- Total
목록TopLevel (1)
Maxima's Lab
[Python, Tkinter] Graphic User Interface (GUI) - Multiple Windows 생성
안녕하세요, 오늘은 Tkinter 모듈을 사용하여, Toplevel을 활용한 Multiple Windows를 생성하는 방법에 대해서 알아보도록 하겠습니다. 다음과 같이, main.py 파일을 구성하였습니다. import tkinter as tk import tkinter.ttk as ttk import sub_main class Mainform(): def __init__(self): self.main_win = tk.Tk() self.main_win.title("Maxima") self.main_win.geometry("1000x800+200+200") self.make_widgets() def execute_sub_main(self): self.sub_main = sub_main.SubMainForm..
Python/GUI (Graphic User Interface)
2023. 1. 15. 16:09