PyQt5 기본 (Base) 코드
2025. 3. 21. 19:58ㆍ업무 스킬/PyQt5
728x90
PyQt5 기본 코드
복사 붙여넣기 해서 쓰면됨.
QtWidgets를 필요한 것만 import 해서 쓰면됨.
괜히 외우지 말고 복붙 추천!
import sys
from PyQt5.QtWidgets import QMainWindow, QApplication, QPushButton, QListWidget, QLabel, QLineEdit, QProgressBar
from PyQt5.QtCore import QThread, pyqtSignal
from PyQt5 import uic
class Mywindow(QMainWindow):
def __init__(self):
super().__init__()
ui_path = ''
uic.loadUi(ui_path, self)
app = QApplication(sys.argv)
win = Mywindow()
win.show()
app.exec()
728x90
'업무 스킬 > PyQt5' 카테고리의 다른 글
QPushButton을 통해 QFileDialog 연결하기 (0) | 2025.03.26 |
---|---|
[PyQt Desginer 사용하기] 1. QPushButton (0) | 2025.03.25 |
PyQt5 Designer 설치 (0) | 2025.03.24 |
Pyinstaller 사용하여 PyQt5 EXE 만들기 (feat. designer UI 사용) (0) | 2025.03.23 |
[QtDesigner] 설치 및 실행 방법 (Anaconda 없이) (0) | 2021.12.31 |