반응형

파이썬/PYQT 4

pyqt 그룹박스 (QGroupBox) 내 체크박스(QCheckBox) 체크된 항목 확인

pyqt에서 정해지지 않은 수의 체크박스를 만든 경우 체크 여부를 확인하는 방법 from PyQt5.QtWidgets import QWidget, QCheckBox, QGroupBox, QPushButton from PyQt5.QtWidgets import QScrollArea from PyQt5.QtWidgets import QApplication from PyQt5.QtWidgets import QVBoxLayout import sys class MyApp(QWidget): def __init__(self): super(MyApp, self).__init__() self.initUI() def initUI(self): self.scrollarea = QScrollArea(self) self.scrol..

파이썬/PYQT 2022.12.29

PYQT 해상도 변경에 따른 문제

PYQT에서 해상도를 맞추는 방법은 뭐 여러가지가 있지만..이미 디자인을 마친 상태에서 이걸 적용하는 것은 참 번거로운 일이다.. 해상도를 찾아서 적용하는 방법등 여러가지 찾아봤지만 적당한 것이 없다. 하지만 단 두줄로 해당 문제를 해결이 가능하다..(물론 나만 테스트 해봤기 때문에 모두 잘 적용된다는 보장은 없음..;;) os.environ["QT_AUTO_SCREEN_SCALE_FACTOR"] = "1" app = QApplication(sys.argv) app.setAttribute(Qt.AA_EnableHighDpiScaling)

파이썬/PYQT 2022.09.19
반응형