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