파이썬 pyqt QComboBox style

728x90
# 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;
}
반응형