728x90
PySide6 디자이너를 사용해서 화면을 디자인하고 저장했다며
Python에서 화면을 띄워보자.
일단 디자이너로 화면 디자인하고 아래와 같이 ui1으로 저장하고
test.py를 새로 만들고 아래 코드를 저장하고
python test.py 를 하며 화면이 열린다.
※ test.py 소스
from PySide6.QtWidgets import QApplication, QMainWindow
from ui1 import Ui_MainWindow
class MainWindow(QMainWindow, Ui_MainWindow):
def __init__(self, *args, obj=None, **kwargs):
super(MainWindow, self).__init__(*args, **kwargs)
self.setupUi(self)
app = QApplication()
window = MainWindow()
window.show()
app.exec()
728x90
반응형
'Software > Python' 카테고리의 다른 글
Python 소개 - 아나콘다 설치하기 (0) | 2023.12.12 |
---|---|
Python 시작하기 - PySide6 버튼 이벤트(1) (0) | 2023.12.10 |
Python 시작하기 - PySide6 디자이너 작업표시줄에 고정 (0) | 2023.12.10 |
Python 시작하기 - PyQtGraph (0) | 2023.12.09 |
Python 시작하기 - PyQt6 디자이너 사용하기 (0) | 2023.12.09 |