C++ qt设置qcombox的下拉箭头无边框,箭头颜色为rgba(209, 215, 222, 1)
时间: 2024-04-05 16:29:03 浏览: 184
您可以通过设置 QComboBox 的样式表来实现下拉箭头无边框且箭头颜色为 rgba(209, 215, 222, 1) 的效果。下面是一个示例代码:
```cpp
QComboBox *comboBox = new QComboBox(this);
comboBox->setStyleSheet("QComboBox::drop-down { border: none; image: url(); }"
"QComboBox::down-arrow { image: url(:/images/arrow.png);"
" width: 10px; height: 10px; }"
"QComboBox::down-arrow:on { image: url(:/images/arrow_hover.png); }");
// 设置箭头颜色
QString styleSheet = QString("QComboBox::down-arrow {"
"border: none; "
"background-color: rgba(209, 215, 222, 1);"
"}");
comboBox->setStyleSheet(styleSheet);
```
在这个代码中,我们首先通过设置 `QComboBox::drop-down` 伪状态选择器来选择下拉箭头,并将其边框设置为 `none`,同时设置 `image` 属性为空,从而实现无边框的效果。
然后,我们通过设置 `QComboBox::down-arrow` 伪状态选择器来选择箭头,并设置其样式以及大小。同时,我们还使用 `QComboBox::down-arrow:on` 伪状态选择器来设置鼠标悬停时箭头的样式。
最后,我们通过设置 `background-color` 属性来设置箭头的颜色为 rgba(209, 215, 222, 1)。
需要注意的是,为了实现无边框的效果,我们需要将 `image` 属性设置为空。否则,即使将边框设置为 `none`,仍然会出现默认的边框。
希望这能帮到您!
阅读全文