QComboBox

Posted 欢乐的企鹅

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QComboBox相关的知识,希望对你有一定的参考价值。

https://stackoverflow.com/questions/13308341/qcombobox-abstractitemviewitem

第一步:

If you replace the default delegate by a QStyledItemDelegate, your style sheet should work:

QStyledItemDelegate* itemDelegate = new QStyledItemDelegate();
combo->setItemDelegate(itemDelegate);

第二步:编辑样式表

QComboBox
font:normal bold 20px;    
color:rgb(201, 215, 52);

QComboBox QAbstractItemView::item:selected
    color: rgb(86, 212, 21);
    background-color: #327cc0;

编译查看效果~

亲测有效~

 

 

以上是关于QComboBox的主要内容,如果未能解决你的问题,请参考以下文章

QCombobox & QListWidget - 检查内容

启动时在 QcomboBox 中显示特定项目

qtablewidget加入QcomboBox控件如何读取内容

QT5-控件-QComboBox

QComboBox样式表:字体图标项高

如何从 QComboBox 中获取所选项目以显示在 PyQt5 的 QTableWidget 中? (QComboBox 有复选框来选择项目)