
QtDesigner Tab 순서 수정하기
탭 순서 편집 누르면 됩니다.
- 파이썬
- · 2023. 1. 2.
self.ui.scrollArea.ensureVisible(0, 0) self.scrollArea.ensureVisible(0, 0) scrollArea.ensureVisible(0, 0) # 사용 x=0, y=0
# enabled = False 일 경우 QComboBox:disabled{ background-color: #e0e0e0; border: 2px solid #e0e0e0; } # 기본 style QComboBox{ border: 2px solid #e0e0e0; } # 드롭다운 화살표 style QComboBox::down-arrow{ image: url(:/icon/icon/down-arrow.png); } # 드롭다운 화살표 버튼 style QComboBox::drop-down:button{ background-color: transparent; }
label.show() print(label.isVisible()) # True label.hide() print(label.isVisible()) # False isVisible()로 확인하면 된다.
label.setOpenExternalLinks(True) 라벨에 외부링크 설정값을 True 로 바꿔준다.
탭 순서 편집 누르면 됩니다.