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
- Python
- query 최적화
- pyside6
- 재고 관리
- django rank
- django
- pyside6 ui
- 장고
- orm 최적화
- django erp
- Self ERP
- QApplication
- test drive development
- qwindows.dll
- materialized
- 중량 관리
- channels
- django role based
- pip 설치
- tensorflow
- optimization page
- uiload
- django test
- pip 오류
- 파이썬
- 장고로 ERP
- 페이지 최적화
- django drf
- qpa_plugin
- ERP
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