메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

PyQt

DB CAFE
Dbcafe (토론 | 기여)님의 2024년 10월 1일 (화) 22:01 판 (새 문서: 참고 : 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 만들기 <source lang=python> # coding: utf-8 import sys from PyQt5 import QtWidgets from PyQt5 import uic class Form(QtWidget...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

참고 : https://opentutorials.org/module/544/4998

Pyqt5 레퍼런스

https://www.riverbankcomputing.com/static/Docs/PyQt5/index.html

  1. Hello World 화면 만들기
    1. ui화면 만들기

QT디자이너를 이용하여 윈도우 폼을 생성한후 "xxxx.ui" 파일로 저장 (.ui파일은 xml파일임)

pyuic5 -x xxxx.ui -o xxxx.py


      1. 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())