PyQt
DB CAFE
참고 : https://opentutorials.org/module/544/4998
Pyqt5 레퍼런스
https://www.riverbankcomputing.com/static/Docs/PyQt5/index.html
- Hello World 화면 만들기
- ui화면 만들기
QT디자이너를 이용하여 윈도우 폼을 생성한후 "xxxx.ui" 파일로 저장 (.ui파일은 xml파일임)
pyuic5 -x xxxx.ui -o xxxx.py
- UI 만들기
# coding: utf-8
import sys
from PyQt5 import QtWidgets
from PyQt5 import uic
class Form(QtWidgets.QDialog):
def __init__(self, parent=None):
QtWidgets.QDialog.__init__(self, parent)
self.ui = uic.loadUi("QT_WIN_01.ui")
self.ui.show()
if __name__ == '__main__':
app = QtWidgets.QApplication(sys.argv)
w = Form()
sys.exit(app.exec())