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
- 웹 프로그래밍
- paper review
- 데이터베이스
- Computer Vision
- 그래픽 유저 인터페이스
- tensorflow
- yaml
- Python
- MariaDB
- Web Programming
- 논문 리뷰
- pytorch
- 컴퓨터 비전
- 파이썬
- Docker
- Deep Learning
- 장고
- GUI
- OpenCV
- Tkinter
- k8s
- 텐서플로우
- POD
- 딥러닝
- vue.js
- numpy
- Django
- kubernetes
- FLASK
- 파이토치
Archives
- Today
- Total
목록PyQt5 (1)
Maxima's Lab

안녕하세요, 오늘은 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