728x90
[Check box]
기본 함수
self.chk_all.isChecked()
chk.setChecked(True)
self.sender().objectName()
(오브젝트명 가져오기)
전체 Groupbox에 묶어서 한번에 제어하기
chkBoxes = self.groupBox.findChildren(QCheckBox)
(한번에 이벤트 적용하기)
chkBoxes = self.groupBox.findChildren(QCheckBox)
for chk in chkBoxes:
chk.clicked.connect(self.chkCate)
728x90
'나를 위한 코드' 카테고리의 다른 글
셀레니움 특정 엘리먼트 위치의 스크롤 바 위치 찾기 (0) | 2023.03.20 |
---|---|
pyinstaller 실행할 때 모듈 추가해서 같이 패키징하기 (0) | 2023.03.20 |
파이썬 gui : 파일, 폴더 찾기 (0) | 2023.03.20 |
pyinstaller 에 내가 원하는 폰트 지정하기 (qt designer) (0) | 2023.03.20 |
파이썬 딕셔너리 KeyError 해결 (0) | 2023.03.17 |
댓글