QComboBox列表项高度设置

Posted stones-dream

tags:

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

QComboBox列表项高度设置步骤:

1. 设置代理

QStyledItemDelegate *delegate = new QStyledItemDelegate(this);
ui->comboBox->setItemDelegate(delegate);

2. 设置风格

ui->comboBox->setStyleSheet("QComboBox QAbstractItemView::item {min-height: 30px;}");
---------------------
作者:咖啡色的思想者
来源:CSDN
原文:https://blog.csdn.net/xiaogangwang2012/article/details/51192419








以上是关于QComboBox列表项高度设置的主要内容,如果未能解决你的问题,请参考以下文章

QCombobox设置下拉框的宽度

QT怎么设置QComboBox弹出下拉框的高度

单独设置 QComboBox 菜单项的样式 PyQt5

qtcombobox的背景颜色越过下拉

QComboBox 下拉项边距

QComboBox实现复选功能(三种方法:嵌套QListWidget, 设置QStandardItemModel, 设置Delegate)