문제

I would like to use a large font size with a QComboBox. I tried setting the font-size using a style-sheet:

*{font-size: 22pt}

This does change the font size, but the spacing between the items in a QComboBox drop-down end up overlapping. How can I get a large font and also get the proper row spacing?

도움이 되었습니까?

해결책

Styles for the drop down of a QComboBox can be changed by applying relevant changes to QComboBox QAbstractItemView as showed in the following example:

QComboBox QAbstractItemView
{
   color:#ccc;
   background-color:#333;
   border:none;
   selection-background-color:#1c1c1c;
   selection-color: #ccc; 
   height: 30px;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top