Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Self ERP
- 페이지 최적화
- 중량 관리
- uiload
- pyside6
- QApplication
- Python
- 장고로 ERP
- pyside6 ui
- optimization page
- materialized
- django drf
- 파이썬
- django test
- 재고 관리
- pip 오류
- ERP
- django
- 장고
- django erp
- tensorflow
- pip 설치
- django role based
- query 최적화
- channels
- qwindows.dll
- qpa_plugin
- test drive development
- django rank
- orm 최적화
Archives
- Today
- Total
목록pyside6 ui (1)
취미삼아 배우는 프로그래밍
PySide6 load .ui without convert to .py
import sys from PySide6.QtUiTools import loadUiType from PySide6.QtWidgets import * import os env = os.environ # env.setdefault("QT_DEBUG_PLUGINS","1") # env.setdefault("QT_QPA_PLATFORM_PLUGIN_PATH", os.getcwd()) env.setdefault("QT_PLUGIN_PATH", os.getcwd()) generated_class, base_class = loadUiType("main.ui") class UI(base_class, generated_class): def __init__(self): super().__init__() self.setu..
파이썬
2022. 3. 21. 20:44