반응형
import sys
from PyQt5.QtWidgets import *
from PyQt5 import uic # ui 파일을 사용하기 위한 모듈 import
#UI파일 연결 코드
UI_class = uic.loadUiType("UI파일이름.ui")[0]
class MyWindow(QMainWindow, UI_class) :
def __init__(self) :
super().__init__()
self.setupUi(self)
app = QApplication(sys.argv)
Window = MyWindow()
Window.show()
app.exec_()
반응형
'IT News' 카테고리의 다른 글
MySql사용법 (0) | 2021.10.06 |
---|---|
AutoCAD 블록을 AutoCAD Plant 3D 사용자 정의 파트 작성 (0) | 2021.10.03 |
MySQL 설치 (0) | 2021.10.01 |
vcruntime140_1.dll 또는 vcruntime1401.dll오류해결 방법 (0) | 2021.09.22 |
anaconda3 다운 사이트 (0) | 2021.09.22 |
댓글