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
- 파이썬
- Django
- 논문 리뷰
- 딥러닝
- MariaDB
- Tkinter
- POD
- GUI
- Computer Vision
- Docker
- 데이터베이스
- OpenCV
- yaml
- Python
- 파이토치
- 텐서플로우
- tensorflow
- k8s
- paper review
- numpy
- Deep Learning
- 그래픽 유저 인터페이스
- Web Programming
- 장고
- FLASK
- 컴퓨터 비전
- pytorch
- vue.js
- 웹 프로그래밍
- kubernetes
Archives
- Today
- Total
목록PyQt5 (1)
Maxima's Lab
[Python, PyQt5] Graphic User Interface (GUI) - 윈도우 창 생성, 위치 및 크기 조절
안녕하세요, 오늘은 PyQt5 모듈을 사용하여, 윈도우 창을 생성하고, 해당 윈도우 창의 위치와 크기를 조절하는 방법에 대해서 알아보겠습니다. 윈도우 창의 위치와 크기를 조절하는 것을 2가지 방법으로 알아보겠습니다. setGeometry(x, y, width, height) move(x, y) + resize(width, height) 첫번째, setGeometry() 함수를 사용하여 윈도우 창을 생성한 결과는 다음과 같습니다. import sys from PyQt5.QtWidgets import * app = QApplication(sys.argv) win = QWidget() win.setWindowTitle('Maxima') win.setGeometry(200, 200, 800, 600) win.s..
Python/GUI (Graphic User Interface)
2022. 8. 13. 13:06