QComboBox下拉项目边距

时间:2014-08-16 13:53:24

标签: qt qt5 qtgui qtstylesheets qabstractitemview

我想为我的QComboBox设置下拉项目的边距。这就是现在的样子:

enter image description here

我想要这样的事情:

enter image description here

我试过

QComboBox QAbstractItemView::item {
    margin: 3px;
}

但它不起作用。

你能帮我解决这个问题吗?

2 个答案:

答案 0 :(得分:11)

你想在items之间设置一些空间。我尝试不同的样式表,但我无法得到结果。但我找到了这个解决方案。也许有帮助。

    ui->comboBox->setView(new QListView());
ui->comboBox->setStyleSheet("QComboBox QAbstractItemView::item { min-height: 35px; min-width: 50px; }QListView::item:selected { color: black; background-color: lightgray}");

结果非常相似 enter image description here

答案 1 :(得分:1)

ui->comboBox->setItemDelegate(new QStyledItemDelegate());

也可以